Viewing 15 posts - 76 through 90 (of 181 total)
Setting up your own log shipping solution is not difficult, it just depends on how you want to set it up, I use a bunch of bat files to accomplish...
July 6, 2005 at 8:50 am
I am sorry - looks like I posted this in the wrong place - moving this thread to --> SQL Server -->administration.
June 29, 2005 at 12:43 pm
Good Job Steve.
As a rule of thumb - Make sure you place the log file on seperate disk or at least on a seperate partition. If that is the...
June 28, 2005 at 9:15 am
general network error could mean anything. If you can authenticate against the DB in NY, then its likely that you are encountering a network or bandwidth issue which is...
June 28, 2005 at 9:08 am
Totally agree with Karl and Russel. Set up your own log shipping solution. I set up mine from scratch in the old days ( SQL Server 7.0) when log...
June 8, 2005 at 10:42 am
before doing anything else did you try this?
Use master
GO
sp_resetstatus (db_name)
stop and start the SQL Service.
June 8, 2005 at 10:29 am
Check out this post - plenty of discussion of SP4 and the issue with instances running AWE - http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=182669
June 7, 2005 at 4:40 pm
USE MSDB
DECLARE @backup_date DATETIME
BEGIN
set @backup_date=(select dateadd (dd, -15, getDate()))
EXEC SP_DELETE_BACKUPHISTORY @backup_date
END
I have run this ( deleting backup history over 15 days old) and I have never had an issue -...
June 7, 2005 at 1:49 pm
Petmani, You say we should apply SP4 if we use AWE - Please check out the latest release noted from MS:
"Warning: Microsoft has found an issue with the final...
May 17, 2005 at 12:59 pm
Its possible that you have not enabled TCP/IP protocol support for your SQL Server. Execute SvrNetCn.exe and enable TCP/IP. The SvrNetCn.exe is located under C:\Program Files\Microsoft SQL Server\80\Tools\Binn.
May 16, 2005 at 8:42 am
Thanks guys - I ran it last night in Prod and it worked like a charm
May 5, 2005 at 12:24 pm
Thanks Noel,
Just to make sure - by running this:
ALTER TABLE table_name WITH NOCHECK ADD CONSTRANT [CONSTRAINT_NAME] DEFAULT (0) FOR [COL_NAME]
After I run this, the default constraint will be enforced on all...
May 3, 2005 at 10:56 am
Hi Guys,
Sorry - I have been distracted with other projects. But am looking at this issue this morning. So here is what I did:
I added the column without the constrant...
May 3, 2005 at 9:26 am
NP - thats why we are here - We are all here to help each other. I would run the DBCC CHECKDB after you move the DB. Check BOL for...
March 31, 2005 at 7:44 am
Viewing 15 posts - 76 through 90 (of 181 total)