Viewing 5 posts - 1 through 5 (of 5 total)
While it doesn't help you track down the specific machine, that particular message means that someone/thing tried to authenticate to SQL Server with Windows authentication but wasn't on the same...
September 17, 2007 at 8:02 am
Adriadne, you've got it right. The xp_restore_verifyonly sproc takes as many @filename parameters as you need, so you'd have something like this:
EXEC master.dbo.xp_restore_verifyonly
@filename = 'Q:\subdirectory1\File1.mdf',
@filename = 'Q:\Subdirectory1\File2.mdf',
@filename = 'Q:\Subdirectory1\File3.mdf'
September 17, 2007 at 7:55 am
Hi Stephen,
This script http://www.chriskempster.com/scripts/listtriggers.sql, which appears to be originally from sqlservercentral.com, will do the trick. It's just a text file, so do a "view source" in your browser...
April 11, 2007 at 6:44 am
Actually mine will be a little simpler. I have a trigger maintaining the lineage and depth of each node (http://www.sqlteam.com/item.asp?ItemID=8866) so that we don't ever have to do...
July 21, 2003 at 3:46 pm
Andy -- I can't use cascade deletes because the parent points to a row in the same table; SQL Server considers this to be a circular reference and won't allow...
July 21, 2003 at 8:27 am
Viewing 5 posts - 1 through 5 (of 5 total)