Fix Recovery Pending State in SQL Server Database
Fix Recovery Pending State in SQL Server Database
https://mstechtalk.com/fix-recovery-pending-state-sql-server/
ALTER DATABASE [DVSB] SET EMERGENCY;
GO
ALTER DATABASE [DVSB] set single_user
GO
DBCC CHECKDB ([DVSB], REPAIR_ALLOW_DATA_LOSS) WITH ALL_ERRORMSGS;
GO
ALTER DATABASE [DVSB] set multi_user
GO
Comments
Post a Comment