Viewing 15 posts - 1 through 15 (of 45 total)
You may need to check out the instcat.sql
Is your SQL Server 2000 instance running SP4?
If not, in order for Distributed queries in SQL Server 2005 to work against...
January 9, 2008 at 8:11 am
Try restoring the logs manually to the standby server and see what, if any, error is received.
In the past while debugging, I have found alerts set up on production...
January 7, 2008 at 8:32 am
Make sure you have backups. Make sure the backups are being written to tape. Make sure the backups are not being stored locally.
Backup everything.
Make sure the production database...
December 31, 2007 at 1:13 pm
You will get more for your money by hiring a qualified DBA rather than buying a tool and falsely believing it will solve any/all of your problems. If...
December 31, 2007 at 1:03 pm
This is assuming the error is being caused because the backup of the master database is trying to write to a location that it can't see.
When you log out, the...
December 31, 2007 at 12:57 pm
Existing DBAs can do their part by encouraging their employers to hire new IT graduates to pair with them. I've had opportunites to train new graduates and I...
December 31, 2007 at 12:46 pm
thanks much! that never crossed my mind. As a DBA, I never thought I'd be happy to have a corrupt database.
November 9, 2007 at 12:55 pm
I believe the word "Consultant" is too broadly used in the IT industry. Many people advertised as "consultants" are actually contractors.
My belief is that a contractor is one who...
November 9, 2007 at 9:46 am
Keep in mind that your standby server logs should be loaded with a delay (a good tiemframe is 2 hours). Continue the backups and the copy's, but delay the...
October 31, 2007 at 9:17 am
If you decide to generate your log file restore commands dynamically....here's a script found awhile back that does it.
This procedure uses the MSDB backup tables, and will generate the basic...
October 31, 2007 at 8:54 am
Here's a stored procedure I found awhile back that easily write a text string to a file.
CREATE PROCEDURE spWriteStringToFile
(
@String Varchar(8000), --8000 in SQL Server 2000
@Path VARCHAR(255),
@Filename VARCHAR(100)
--
)
AS
DECLARE @objFileSystem...
October 31, 2007 at 8:32 am
I haven't seen this before.
I suggest that you start up profiler and run a trace. Select Events (Stored Procedures and TSQL) ..I've done the same thing on...
October 30, 2007 at 3:21 pm
:ermm: Maybe virus scanning software has been installed/patched and hasn't been configured to exclude the files you're using. In this case, the files would be scanned for viruses as...
October 30, 2007 at 2:02 pm
Wonder if has anything to do with the change in Daylight Savings Time this past weekend....y'know, the time used to change last week, but is now the 4th.
Maybe...
October 30, 2007 at 1:10 pm
About the full vs simple. I've never worried about changing this. If my database is in production it is set to full mode. If my database...
October 30, 2007 at 1:01 pm
Viewing 15 posts - 1 through 15 (of 45 total)