Viewing 15 posts - 1 through 15 (of 270 total)
If you are using a full version sql server use the sql server agent to schedule the backup.
If you are using sql express you will nt be able to use...
May 26, 2008 at 4:53 am
I would force start sql server and try re-running the alter database statements with the correct path and filename I don't see why it wouldn't work.
hth
David
March 18, 2008 at 5:07 am
Well in the script you posted you did not specify the actual filenames just the logical filenames and the directories in which they would reside force sql server to start...
March 17, 2008 at 6:11 pm
Sorry i may be being silly but is that exactly the code you used?
Shouldn't it be e.g depending on the filenames of the files moved in the case of msdb...
March 17, 2008 at 5:34 pm
The service account under which sql server is running just doesn't have enough writes on the directories to which you moved the files.
If you just give the service account full...
March 17, 2008 at 2:20 pm
Cannot find SSPI context is probably related to the SPN(service principal name) for the SQL Server not being set correctly.
You can check this using adsiedit but intsead of explaining it...
February 16, 2008 at 3:31 am
There's a few ways but if you want to capture the lock escalation etc on a particular table then you could use sql profiler.
I would not use ths to...
January 29, 2008 at 11:55 pm
You can detach msdb by using trace flag 3608 but obvioulsy this means shutting down your server and restarting it with this trace flag.
If you can't recover msdb you can...
January 29, 2008 at 11:50 pm
Marek Powichrowski (11/7/2007)
David Scotland (11/7/2007)
Have you restored the last full backup first with norecovery?hth
David
No, "with recovery".
So I must restore full backup with "no recovery" and next diff with "with...
November 7, 2007 at 4:19 am
Have you restored the last full backup first with norecovery?
hth
David
November 7, 2007 at 2:37 am
You could do this using xp_cmdshell this is disabled by deafult on SQL Server 2005 on new installs so you would need to turn it on before you could use...
October 15, 2007 at 4:27 pm
There is another open source web admin tool for sql server which looks just like the good old enterprise manager. I just gave a link to a blog since its...
June 28, 2007 at 2:55 pm
If you need to reduce the size of the log after rebuilding the indexes then I would use dbcc shrinkfile and put this as the final step in your job...
May 3, 2007 at 3:25 pm
I would personally turn off auto shrink as its only real use is on development machines where space is at a premium. You can find numerous articles on why its bad...
May 3, 2007 at 2:36 pm
Licensing in 2005 is done on a trust basis so it will use all 4 processors but you will obvioulsy be in violation of the license. Remember though that MS...
May 3, 2007 at 2:12 pm
Viewing 15 posts - 1 through 15 (of 270 total)