Viewing 10 posts - 1 through 10 (of 10 total)
The message indicates that your SQL service was stopped from the Services Windows Management console (Administrative Tools > Services).
September 27, 2010 at 7:20 am
Definitely check the database mail log. Check to see are there any changes to your email server which you use for database mail as well.
October 15, 2008 at 7:24 am
Thanks for your reply. I did check all my jobs and job histories to make sure they are working correctly.
What puzzles me is that, as indicated in the KB...
September 26, 2008 at 11:48 am
Have you tried using T-SQL:
USE MASTER
GO
CREATE LOGIN [domain\user] FROM WINDOWS
GO
USE [database_name}
GO
CREATE USER [domain\user] FOR LOGIN [domain\user]
GO
June 5, 2007 at 12:02 pm
Ok, I created a new table with the same structure and created the unique clustered index on it, then tried to input the same set of records into this new...
January 29, 2007 at 8:34 am
That would be my last resort, but wanted to see if there's an alternative. And I thought DBCC DBREINDEX was supposed to drop and rebuild the indexes, which I had...
January 26, 2007 at 7:33 am
Here's the procedure used to do the insert. It's been used to update the same table (members_) with different data set (different List_) (from the same data source) successfully. So...
January 25, 2007 at 2:47 pm
Here's the DDL. The insert error is on the index "UNIQUE CLUSTERED INDEX [IX_members_List_EmailLC]". Thank you for all your help.
USE [ListManager]
GO
/****** Object: Table [dbo].[members_] Script Date:...
January 25, 2007 at 2:22 pm
The table does have another unique index which is an identity column and values are autogenerated by the system. And no triggers.
What puzzles me is that how it detect...
January 25, 2007 at 12:48 pm
yep, already did that and that's what I mean "didn't find any identical records" in my original posting.
January 25, 2007 at 12:13 pm
Viewing 10 posts - 1 through 10 (of 10 total)