Added new scripts and changes

This commit is contained in:
2024-12-24 15:33:41 +01:00
parent a0c7d14a63
commit 9052475370
18 changed files with 11313 additions and 7 deletions

View File

@@ -0,0 +1,16 @@
/*
adapt the db name and execute each of those steps manually
if data corruption have occured, restoring a backup might need necessary
*/
return
ALTER DATABASE sandbox SET EMERGENCY;
dbcc checkdb('sandbox') WITH ALL_ERRORMSGS, NO_INFOMSGS
ALTER DATABASE sandbox SET single_user with rollback immediate;
dbcc checkdb ('sandbox',repair_allow_data_loss)
ALTER DATABASE sandbox SET multi_user with rollback immediate;