--ZBUSA为要修复的数据名
USE MASTER GO SP_CONFIGURE 'ALLOW UPDATES',1 RECONFIGURE WITH OVERRIDE GO ALTER DATABASE ZBUSA SET EMERGENCY GO sp_dboption 'ZBUSA', 'single user', 'true' GO DBCC CHECKDB('ZBUSA','REPAIR_ALLOW_DATA_LOSS') GO ALTER DATABASE ZBUSA SET ONLINE GO sp_configure 'allow updates', 0 reconfigure with override GO sp_dboption 'ZBUSA', 'single user', 'false' GO |