Viewing 11 posts - 1 through 11 (of 11 total)
No I never did find the exact problem that caused this. Since it was not mission critical and that server was retired for end of life, I decided to...
July 5, 2005 at 2:13 pm
I use use the login_time from sysprocesses for spid 1 to get the restart time. Either should work though. The only thing that may or may not affect you is...
January 12, 2005 at 3:18 pm
Not sure if there is a more elegant solution, but here is my solution. I gather perfcounters every 10 minutes from my 25 production servers and store them in a non production box for analysis. ...
January 7, 2005 at 2:20 pm
I do something like this usually to avoid cursors.
DECLARE @TempTable TABLE
(
ID int IDENTITY (1, 1) NOT NULL,
SomeData varchar(20),
SomeMoredata int NULL
)
-- dump all params for sproc...
January 6, 2005 at 6:42 pm
I would think that Peter is on to your main problem. The startup account for your SQL Server. Check to make sure that the logon tab under services\mssqlserver is not...
June 28, 2004 at 2:11 pm
Not sure if this helps, but I have something similar. Weekly I have run a dts package that I FTP to another site. I have it run as a scheduled job with...
May 18, 2004 at 2:07 pm
I also had an issue fairly recently with torn page in a DB. Usually they are a result of a hardware failure, such as the hard drive array controller in...
May 11, 2004 at 1:50 pm
As Le Rhun said, sometimes just shrinking alone is not good enough. The shrink can not shrink sections of the transaction log that are marked active. For my pesky databases that have...
May 7, 2004 at 5:15 pm
Create a job in SQL Agent. For the step that is to run this script, choose "ActiveX Script" as the Type and then select the radio button "Visual Basic Script" as...
May 5, 2004 at 2:34 pm
I think I grabbed this script from Script Library here, but in any case, I run this little ActiveX script weekly on each server. I would hate having to recreate...
May 4, 2004 at 4:31 pm
You may also want to check the error logs. The last time I had a suspect database was after a server crash. There was a partial write causing a...
December 8, 2003 at 2:00 pm
Viewing 11 posts - 1 through 11 (of 11 total)