一个数据库问题

今天打开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!

Published At
Categories with 数据库类
Tagged with
comments powered by Disqus