今天打开SQL Server2000,看到一个数据库后写着“置疑”,且里面的内容不见了。
请问什么回事呢?
---------------------------------------------------------------
看一看你的数据库文件还在不在?
---------------------------------------------------------------
数据库文件丢了?
---------------------------------------------------------------
多半是数据库文件不见了哈:)
---------------------------------------------------------------
执行:
USE master
GO
sp_configure 'allow updates', 1
GO
RECONFIGURE WITH OVERRIDE
GO
sp_resetstatus yourdb
GO
sp_configure 'allow updates', 0
GO
RECONFIGURE WITH OVERRIDE
GO
---then restart your sql that is ok!