首页 > 代码库 > MS Sql Server 数据库或表修复(Log日志文件损坏的修复方法)

MS Sql Server 数据库或表修复(Log日志文件损坏的修复方法)

----------------- 【1】
use master
go 
sp_configure allow updates,1
reconfigure with override
go 
----------------- 【2】
update sysdatabases set status=-32768 where dbid=DB_ID(zc_post)
----------------- 【3】
dbcc rebuild_log(zc_post,d:\zc_post_log.ldg)

----------------- 【4】
dbcc checkdb(zc_post)

----------------- 【5】
sp_dboption zc_post,dbo use only,false

 

MS Sql Server 数据库或表修复(Log日志文件损坏的修复方法)