SQL Server2000在只有主库mdf文件下的恢复

时间:2022-11-13 19:06:41

SQL Server2000在只有主库.mdf(如Test.mdf)文件下的恢复:

1、新增一Test数据库;

2、断开MSServer(cmd-->net stop mssqlserver);
3、用原来的mdf文件替换新的mdf文件;
4、设置数据库允许直接操作系统表:
    use master
    go

    sp_configure 'allow updates',1
    go

    reconfigure with override
    go
5、设置test为紧急修复模式:
    update sysdatabases set status=-32768 where dbid=DB_ID('test')
6、重建数据库日志文件:
    dbcc rebuild_log('test','C:\Program Files\Microsoft SQL Server\MSSQL\Data\test_log.ldf')
7、验证数据库一致性:
    dbcc checkdb('test')
8、设置数据库为正常状态:
    sp_dboption 'test','dbo use only','false'
9、恢复“允许对系统目录直接修改”项:
    sp_configure 'allow updates',0
    go

    reconfigure with override
    go
10、设置数据库为多用户:ALTER DATABASE 数据库名 SET MULTI_USER