修复数据库

数据库显示(可疑)

SQL2000修复语句:

USE MASTER
GO

SP_CONFIGURE 'ALLOW UPDATES',1 RECONFIGURE WITH OVERRIDE
GO

UPDATE SYSDATABASES SET STATUS =32768 WHERE NAME='test'
Go

sp_dboption 'test', 'single user', 'true'
Go

DBCC CHECKDB('test') 
Go

update sysdatabases set status =28 where name='test'
Go

sp_configure 'allow updates', 0 reconfigure with override
Go 

sp_dboption 'test', 'single user', 'false'
Go
原文地址:https://www.cnblogs.com/cynthia0706/p/11993421.html