Viewing 15 posts - 1,066 through 1,080 (of 1,160 total)
You cannot restore a SQL Server 2005 database backup to SQL Server 2000.
March 17, 2009 at 2:44 am
March 17, 2009 at 2:35 am
Sometimes it takes that much time, depending on what it was doing before kill.
DBCC INPUTBUFFER(SPID) would tell you the current status.
March 17, 2009 at 2:33 am
Ratheesh.K.Nair (3/16/2009)
Hi Experts,when i ran
BACKUP LOG Templog With NO_LOG
go
under tempdb.
Hi Ratheesh,
You are referring to "TEMPLOG" as the database instead of "TEMPDB". Change it to TEMPDB and everything will be...
March 17, 2009 at 12:33 am
You may find this article on SSC useful.
March 17, 2009 at 12:25 am
Looks like a duplicate post of this
March 16, 2009 at 11:41 pm
You cannot use ALTER COLUMN to set the Defaults. The below query should work.
ALTER TABLE [dbo].[strategy_card_definition]
ADD CONSTRAINT DF_Date DEFAULT(GETDATE()) FOR [create_date]
March 16, 2009 at 11:00 pm
I assume that your requirement is "Log Shipping". More information can be found here.
March 16, 2009 at 5:13 am
Please check whether any scheduled jobs like 'Backup' or 'Re-index' jobs run during that time. Also check for any "Blocking" processes during that window.
If not, please also check any resource...
March 16, 2009 at 3:48 am
Hi Vijay,
The SQL Server Logs and the Windows Event Log would certainly have some information regarding the SQL Mail failure. Please try to post them here.
March 16, 2009 at 2:17 am
Hi Ansar,
I presume that you are running SP1. The comments here might help you resolve the issue.
March 16, 2009 at 12:02 am
Hi Waseem,
Hope you are doing good.
You can find out whether the user is locked or not, using the below query.
SELECT Name FROM SYS.SYSLOGINS WHERE LOGINPROPERTY (name , 'IsLocked') = 1...
March 15, 2009 at 10:43 pm
Hi Manoj,
Please verify whether the Owner of the job has access to the Linked server.
March 15, 2009 at 10:30 pm
These links might help you
March 10, 2009 at 6:12 am
Viewing 15 posts - 1,066 through 1,080 (of 1,160 total)