Viewing 15 posts - 31 through 45 (of 118 total)
Thank you for your replies. I'll probably stick with SP4 and live with these error messages.
September 12, 2005 at 5:01 am
I experienced transient 605 errors in the past (with subsequent DBCC CHECKDB showing no errors) on one of my servers. What in the end resolved the issue was the update of controller...
September 9, 2005 at 7:07 am
When I want to schedule tracing I use profiler GUI to choose events, filters... and then script the trace, run the script to create server-side trace and setup SQL Server Agent Jobs...
September 8, 2005 at 3:21 am
SQLBill, I didn't mean databases generally but solely system databases. Of course, it's best practice to separate data files and log files. We all know the reasons quite well.
On the...
September 8, 2005 at 2:48 am
I'm not sure whether you can achieve this on install. You can customize location of binnaries and database files, but I don't know how to separate data files and log...
September 7, 2005 at 9:29 am
What solution are you using? Builtin log shipping under Maintenance Plans in Enterprise Edition or something else?
I tested log shipping based on the SQL Server 2000 Resource Kit example which I changed...
September 5, 2005 at 8:20 am
I would setup a server side trace and filter TextData column for occurrences of the procedures and periodically check the trace files. Not so elegant, not so proactive but much...
August 31, 2005 at 4:57 am
I'm glad that this procedure helped you get out of trouble. In fact it works even in the case you lost all secondary data files to extract data from primary...
August 31, 2005 at 4:18 am
In EM you can use either (local) or .
to register Local default instance. Are you using one of these?
August 30, 2005 at 8:21 am
I don't know if it's still relevant but here are the steps I performed several times in test env as a part of disaster recovery tests:
1.First, backup all database files...
August 29, 2005 at 3:36 am
To rename db you can use sp_renamedb proc or ALTER DATABASE statement. Renaming of physical files is not so straightforward:
1.detach db from the server (sp_detach_db proc)
2.rename the file(s)
3.attach db back...
August 25, 2005 at 6:47 am
this might help
http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q290991
Personally, I would feel rather uneasy about it. I would reinstall OS, of course if it was possible.
August 25, 2005 at 3:51 am
What are you trying to do? If you want to be notified when the backup fails, you can use Notifications table in job definition to send email, net send message or page...
August 25, 2005 at 3:18 am
What error messages are in SQL Server Log? By default it gets installed here:
C:\Program Files\Microsoft SQL Server\MSSQL\LOG\ERRORLOG
As your instance won't go up you probably can't use EM to view error...
August 23, 2005 at 8:52 am
You're welcome. Excellent source on index fragmentation and methods to deal with it is here.
http://www.microsoft.com/technet/prodtechnol/sql/2000/maintain/ss2kidbp.mspx
August 18, 2005 at 1:59 pm
Viewing 15 posts - 31 through 45 (of 118 total)