技术支持
金商通各系统有关sql2000数据库置疑的解决方法及SQL语句
Tag:Sqlserver2000,数据库,sql2000,数据库置疑 2020-09-20 金商通餐饮软件郑州金商通
点击:
金商通各系统有关sql2000数据库置疑的解决方法及SQL语句:
sp_configure 'allow updates',1 reconfigure with override
update sysdatabases set status=32768 where name='数据库名'
DBCC TRACEON (3604)
DBCC rebuild_log('数据库名','数据库路径\数据库名_Log.ldf')
dbcc checkdb('数据库名')
update sysdatabases set status=0 where name='数据库名'
sp_configure 'allow updates',0 reconfigure with override
sp_configure 'allow updates',1 reconfigure with override
update sysdatabases set status=32768 where name='数据库名'
DBCC TRACEON (3604)
DBCC rebuild_log('数据库名','数据库路径\数据库名_Log.ldf')
dbcc checkdb('数据库名')
update sysdatabases set status=0 where name='数据库名'
sp_configure 'allow updates',0 reconfigure with override