Browse Source

Merge pull request #157 from Justin-DynamicD/server-options-fix

Remove duplicate entry
Pedro Lopes 6 years ago
parent
commit
b8f1febfff
1 changed files with 0 additions and 3 deletions
  1. 0 3
      MaintenanceSolution/0_database_server_options.sql

+ 0 - 3
MaintenanceSolution/0_database_server_options.sql

@@ -21,9 +21,6 @@ IF CONVERT(int, (@@microsoftversion / 0x1000000) & 0xff) >= 10
 EXEC sys.sp_configure N'optimize for ad hoc workloads', N'1'
 RECONFIGURE WITH OVERRIDE
 GO
-EXEC sys.sp_configure N'show advanced options', N'0'
-RECONFIGURE WITH OVERRIDE
-GO
 
 USE [master]
 GO