Viewing 15 posts - 61 through 75 (of 137 total)
Again, thanks for the help. I had a version problem, it complained about the OS ver and I went down the wrong path.
January 5, 2009 at 1:02 pm
Thanks for the help. Pretty sure now it is the version of Sql and the OS I'm trying to use instead of 32 bit on x64 bit OS.
David
January 1, 2009 at 8:01 pm
Good stuff guys, I'm going to make this part of our standard server build.
Probably add an exec sp_readerrorlog after the fixed driver proc.
December 20, 2008 at 9:19 am
Mani
There have been a couple of good suggestions posted on possible causes of your problem. However, I think it is a problem in the code and needs to...
November 17, 2008 at 8:45 pm
If msdb isn't in sysdatabases, Sql Agent wouldn't run and the job wouldn't fire and allow the other 2 system databases to be backed up.
The problem is mostly like in...
November 17, 2008 at 11:34 am
The Quick fix just add a step that does a backup command:
backup database msdb to disk='your_file_path_here' with init;
To continue troubleshooting the code I would added print statements to see what...
November 17, 2008 at 11:16 am
Joe
I don't believe he is trying what you are describing. The way I'm reading the post Mani has common code for a common job deployed to multiple instances. ...
November 17, 2008 at 7:52 am
Mani
You need to check the Sql Server error log not just the job log. Run the job and then run:
exec sp_readerrorlog;
I'm expecting some kind of error at the time...
November 16, 2008 at 5:16 pm
What does the the log say from the instance that is failing to backup? Does the E: have enough space to backup msdb? If you have...
November 15, 2008 at 10:40 am
I've just looked at the four main tools in this software market. IMHO Sql DM from Idera is the best. Performance Advisor from Sql Sentry is the...
November 12, 2008 at 8:27 pm
I think the article should have had more technical content or been labeled an editorial. I didn't learn much from it.
October 23, 2008 at 9:39 am
They process probably died while it was waiting for the file to grow. It probably just came down to disk contention.
October 21, 2008 at 8:37 am
If you only get 1 9002 message my guess is the transaction is failing on the full log and rolled back. Typically in Sql2k if the tempdb log fills...
October 20, 2008 at 8:38 pm
Once you get your formatting issues fixed the function is datediff. Check out Books on line for the details of the function.
October 15, 2008 at 12:58 pm
If the kill\rollback spid is not using cpu or disk between executions of sp_who2 it is a ghost process. The rollback was done long again ago. ...
September 29, 2008 at 10:15 am
Viewing 15 posts - 61 through 75 (of 137 total)