This commit is contained in:
2024-01-31 14:50:39 +01:00
parent 0548c775b3
commit bb404b6ce6
7 changed files with 370 additions and 9 deletions

View File

@@ -0,0 +1,14 @@
ALTER DATABASE arizona SET EMERGENCY;
GO
ALTER DATABASE arizona set single_user
GO
DBCC CHECKDB (arizona, REPAIR_ALLOW_DATA_LOSS) WITH ALL_ERRORMSGS, NO_INFOMSGS;
GO
ALTER DATABASE arizona set multi_user
GO
EXEC sp_configure filestream_access_level, 2;
RECONFIGURE;