How To detect the suspect database in SQL server2000 With Script Or Program ?
A:
kevchadders
2009-05-28 07:38:41
+1
A:
the status column in master.dbo.sysdatabases will have the suspect bit set which is 256 for the database. in which case this will return a result:
select * from sysdatabases where status&256 = 256
Nick Kavadias
2009-05-28 07:58:59