Viewing 15 posts - 16 through 30 (of 67 total)
Anyone had any luck fixing this? I'm on SQL 2008 R2 Express trying to access 2005 and 2000 machines and I'm getting the same message as the OP.
Cheers
July 6, 2010 at 12:45 am
Has anyone had any luck with this? We've done this on one of our servers by accident and wanted to downgrade to SQL Standard Edition. Are there any 'easy' ways...
March 29, 2009 at 3:13 pm
Last time I tested the Litespeed object level restore it took about the same amount of time as a full restore so i haven't bother with it since, anyone used...
September 29, 2008 at 11:45 pm
This isn't something uncommon, I'd be surprised if you could find a DBA that hasn't had to restore bits of data people have deleted. Possible ways to speed up the...
September 29, 2008 at 5:51 am
I'm having the same problem trying to use a linked server from a 64bit SQL2005 Server SP2 to a 32bit SQL2000 server SP3.
I've tried running the instcat.sql file which...
January 3, 2008 at 11:21 pm
This is a bit of an old message but I was getting the same error after recently migrating to SQL2005 x64. It's apparently a problem to do with caching of...
December 17, 2007 at 6:06 pm
Couple of points, why don't you run update usage? Then you'll have the right results. Also using a COUNT(*) isn't as bad as most poeple say, MS have actually build...
December 30, 2005 at 2:36 am
It's because you're using NVARCHAR, an NVARCHAR(50) actually consumes 100 bytes rather than 50 which is why you're topping the 8060 limit.
December 30, 2005 at 2:33 am
The Average Disk Queue actually depends on the number of disks you have, as long as it is under (2 * the number of disks in the array) you should be...
November 30, 2005 at 2:47 am
Restoring based on Recovery Mode
Simple - Restore to your last full backup
Bulk Logged - Restore to your last Transaction Log
Full - Restore to a point in time
November 30, 2005 at 2:38 am
I've got a few DTS packages that use global variables in the way mentioned above.
DTSGlobalVariables("GBL_LastSuccessfulRun").Value = CSTR(CurrentDateTime)
Set oPkg = DTSGlobalVariables.Parent
oPkg.SaveToSQLServer "SERVERNAME", , , DTSSQLStgFlag_UseTrustedConnection
It's pretty straightforward and I...
November 24, 2005 at 1:58 am
Have you just enabled AWE in the SQL config or have you added AWE to the Boot.ini file and restarted the machine?
November 21, 2005 at 3:13 am
Have you enabled AWE? Enterprise Edition won't use more than 2GB of RAM by default, you need to alter the Boot.ini for it to utilise more memory.
November 21, 2005 at 2:41 am
Couldn't you just INSERT a value into a table on the server and then pull the results back from there?
November 21, 2005 at 2:39 am
Why not INSERT the transaction numbers you want to retrieve into a #Temp or @Table first and avoid the dynamic sql and then select the records from the main table...
November 16, 2005 at 2:47 am
Viewing 15 posts - 16 through 30 (of 67 total)