Created
November 3, 2013 18:19
-
-
Save cchitsiang/7293111 to your computer and use it in GitHub Desktop.
Recover SharePoint 2013 Databases from Suspect Mode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EXEC sp_resetstatus 'SharePoint_Config'; | |
ALTER DATABASE SharePoint_Config SET EMERGENCY | |
DBCC checkdb('SharePoint_Config') | |
ALTER DATABASE SharePoint_Config SET SINGLE_USER WITH ROLLBACK IMMEDIATE | |
DBCC CheckDB ('SharePoint_Config', REPAIR_ALLOW_DATA_LOSS) | |
ALTER DATABASE SharePoint_Config SET MULTI_USER | |
DBCC CheckDB ('SharePoint_Config') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment