Viewing 15 posts - 2,056 through 2,070 (of 4,745 total)
offline,rename,online would have been quicker and the better solution in this case. 😉
November 11, 2010 at 4:07 am
yes I saw that but its not an MS supplied script.
November 10, 2010 at 7:15 am
pavan_srirangam (11/9/2010)
Follow this steps:1.enable truncate log on checkpoint in sp_configure.
2. Change recovery model to bulk-logged.
contradictory advice. trunc log on chkpoint is SQL 7 version of simple mode.
simple you can...
November 9, 2010 at 4:48 pm
Mischa E.J. Hoogendoorn (11/8/2010)
DECLARE @srv sysname
SET @srv = CAST(SERVERPROPERTY('ServerName') AS sysname)
UPDATE sysjobs SET originating_server = @srv
That query...
November 9, 2010 at 2:58 pm
GSquared (11/9/2010)
November 9, 2010 at 2:43 pm
sys.master_files is the 2005 and above equivalent of sysaltfiles. Expect sysaltfiles to be deprecated, so I recommend getting in the habit of using sys.master_files.
November 9, 2010 at 2:40 am
first off you could have gone straight to service pack 2 and missed out service pack 1 install, they are cumulative.
to fix your problem, log onto server with SSMS, right...
November 8, 2010 at 12:24 pm
why are you using the copy database method? Why not backup\restore or detach\attach?
November 5, 2010 at 3:12 pm
Unless it is changed after creation, the database owner will be the userid who created the database, so check that.
November 5, 2010 at 1:47 pm
well firstly I never advise on major configuration changes without caveats, after all I won't be the one to suffer any consequences.
The /3GB switch reduces memory available to the OS,...
November 5, 2010 at 1:44 pm
Your memory is being allocated dynamically, on a server with only 4GB memory this is what you want.
Use task manager to see amount of memory it is using (sqlservr.exe), or...
November 5, 2010 at 11:44 am
About 100 instances and a big user of MOM (soon migrating to SCOM). You can add your own scripts to it so we do extra things like look for things...
November 5, 2010 at 5:37 am
or right click on the server name in the left hand pane in SSMS
November 4, 2010 at 7:49 am
Viewing 15 posts - 2,056 through 2,070 (of 4,745 total)