中讯日志损坏解决

使用SQL Server Management Studio

master数据库新建查询

把以下sql语句咱贴后执行

alter database ds_shop set emergency
use master
exec sp_dboption ds_shop, N’single’, N’true’
dbcc checkdb(‘ds_shop’,REPAIR_ALLOW_DATA_LOSS)
dbcc checkdb(‘ds_shop’,REPAIR_REBUILD)
exec sp_dboption ‘ds_shop’, N’single’, N’false’
exec sp_resetstatus ‘ds_shop’
exec sp_dboption ‘ds_shop’,’single user’,’false’

数据库版本2012以上请参见中讯github文档 点击进入

Posted in 中讯技术.

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注