If i need to query the system databases to find out witch database is in suspect mode, what would be the tables and the field of the value?I use the query select * from master..sysdatabases
where status & 256 = 256
,i check the status field of the database, it is 16, but
on Enterprise manger, i saw that besides the database name it specified
(Suspect), also i use SELECT DATABASEPROPERTY('dbxxx', 'IsSuspect') it return
false. So why exactly it showes suspect? thanks.