Viewing 15 posts - 661 through 675 (of 1,536 total)
Create logins based upon the SID of one machine and create them on the other. When you restore the databases because the SID matches the one in the database it...
December 14, 2008 at 9:02 am
Perry Whittle (12/14/2008)
madhu.arda (12/13/2008)
From the system monitor I got the max value for the Page File Bytes Peak as 1.7276e+010.could you plz tell me to calculate this into GB.
i havent...
December 14, 2008 at 8:45 am
Prakash.Bhojegowda (5/7/2008)
December 13, 2008 at 2:59 pm
You could also run this
EXEC xp_instance_regwrite N'HKEY_LOCAL_MACHINE', N'Software\Microsoft\MSSQLServer\MSSQLServer', N'LoginMode', REG_DWORD, 2
ALTER LOGIN [sa] WITH PASSWORD='the really really strong SA password'; ALTER LOGIN [sa] ENABLE;
/******* RESTART SQL INSTANCE TO TAKE EFFECT...
December 13, 2008 at 2:26 pm
Per http://msdn.microsoft.com/en-us/library/ms175046.aspx you can only have a single set of quotes in an xp_cmdshell. Have you tried removing superfluous quotes?
December 13, 2008 at 2:23 pm
EXEC xp_instance_regwrite N'HKEY_LOCAL_MACHINE', N'Software\Microsoft\MSSQLServer\MSSQLServer', N'LoginMode', REG_DWORD, 2
ALTER LOGIN [sa] WITH PASSWORD='the password'; ALTER LOGIN [sa] ENABLE;
/******* RESTART SQL INSTANCE TO TAKE EFFECT *******/
December 13, 2008 at 2:09 pm
Is the developer instance running on your machine or on a remote server?
Have you run SP2 and ensured that you updated the tools to SP2 as well? There is potentially...
December 13, 2008 at 2:02 pm
Are you seeing any error in the event logs or the SQL Server log?
December 13, 2008 at 7:57 am
usman.tanveer (12/12/2008)
Nicholas Cain (12/12/2008)
December 13, 2008 at 7:37 am
You can either download a tool to perform these checks or you can run queries from a remote machine to check on the status of SQL and whether logins are...
December 12, 2008 at 1:46 pm
Sorry, I haven't found anything that speaks to this as an issue, and couldn't tell you what to try as regards finding this on the web.
December 12, 2008 at 11:53 am
The temp file is probably holding the resultset that it wants to return to you, however is waiting for the entire query to complete.
You could change the environment variables to...
December 12, 2008 at 10:44 am
Before canceling the query have you looked around the to locate the directory which is filling the C drive?
December 12, 2008 at 10:30 am
Have you downloaded and applied the DTS Designer Components from http://www.microsoft.com/downloads/details.aspx?familyid=d09c1d60-a13c-4479-9b91-9e8b9d835cdc&displaylang=en which allow you to manipulate the packages and make changes?
December 12, 2008 at 9:31 am
Viewing 15 posts - 661 through 675 (of 1,536 total)