浏览代码

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

Remove duplicate entry
Pedro Lopes 6 年之前
父节点
当前提交
b8f1febfff
共有 1 个文件被更改,包括 0 次插入3 次删除
  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