Ad Hoc Distributed Queries
```
描述 : 即席分布式查询选项。此选项设置为 1 时,SQL Server 允许进行即席访问。如果此选项未设置或设置为 0,则 SQL Server 不允许进行即席访问。
默认值 : 0
值范围 : 0~1
是否需要重启生效 : 否
修改成0(关闭):
# 调用存储过程,打开高级选项(遇到其他高级选项,不需要重复执行)
sp_configure 'show advanced options', 1;
RECONFIGURE;
GO
# 调用存储过程,设置即席分布式查询选项为0
sp_configure 'Ad Hoc Distributed Queries', 0;
RECONFIGURE;
GO
参考链接: https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/ad-hoc-distributed-queries-server-configuration-option?view=sql-server-2016
```
Agent XPs
```
描述 : “代理 XP”选项。使用 Agent XPs 选项可以启用此服务器上的 SQL Server 代理扩展存储过程。如果禁用此选项,则 SQL Server Management Studio 对象资源管理器将不显示 SQL Server 代理节点。
默认值 : 1
值范围 : 0~1
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
RECONFIGURE;
GO
# 调用存储过程,设置为1
sp_configure 'Agent XPs', 1;
RECONFIGURE
GO
参考链接: https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/agent-xps-server-configuration-option?view=sql-server-2016
```
Database Mail XPs
```
描述 : Database Mail XPs 选项。使用 DatabaseMail XPs 选项可以在此服务器上启用数据库邮件。
默认值 : 0
值范围 : 0~1
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'Database Mail XPs', 0;
GO
RECONFIGURE
参考链接: https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/database-mail-xps-server-configuration-option?view=sql-server-ver16
```
EKM provider enabled (企业版)
```
描述 : EKM provider enabled 选项。EKM provider enabled 选项控制 SQL Server 中的可扩展密钥管理设备支持。
默认值 : 0
值范围 : 0~1
是否需要重启生效 : 是
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'EKM provider enabled', 0;
GO
RECONFIGURE
参考链接: https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/ekm-provider-enabled-server-configuration-option?view=sql-server-2016
```
Ole Automation Procedures
```
描述 : Ole Automation Procedures 选项。使用 Ole Automation Procedures 选项可指定是否可以在 Transact-SQL 批处理中实例化 OLE Automation 对象。还可以使用基于策略的管理或者 sp_configure 存储过程来配置这一选项。
默认值 : 0
值范围 : 0~1
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
# 设置为0
sp_configure 'Ole Automation Procedures', 0;
GO
RECONFIGURE;
参考链接: https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/ole-automation-procedures-server-configuration-option?view=sql-server-2016
```
PH timeout (s)
```
描述 : Ph timeout 选项。使用 ph timeout 选项可以指定全文协议处理程序在超时前等待连接到数据库的时间(秒)。默认值为 60 秒。如果连接尝试因临时的网络问题而超时,可以增加 ph timeout 值。
默认值 : 60
值范围 : 1~3600
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'PH timeout (s)', 60;
GO
RECONFIGURE;
参考链接: https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/ph-timeout-server-configuration-option?view=sql-server-ver16
```
SMO and DMO XPs
```
描述 : SMO and DMO XPs 选项。SMO and DMO XPs选项用于在此服务器上启用 SQL Server 管理对象 (SMO) 和 SQL 分布式管理对象 (SQL-DMO) 扩展存储过程。
默认值 : 1
值范围 : 0~1
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'SMO and DMO XPs', 1;
GO
RECONFIGURE
参考链接: https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/smo-and-dmo-xps-server-configuration-option?view=sql-server-2016
```
access check cache bucket count
```
描述 : Access check cache quota 和 access check cache bucket count 选项用于控制访问检查结果缓存的项数和哈希存储桶数。
默认值 : 0
值范围 : 0~65536 (默认值 0 表示 SQL Server 正在管理这些选项。默认值转换为以下内部配置。)
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'access check cache bucket count', 0;
GO
RECONFIGURE
参考链接:https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/access-check-cache-server-configuration-options?view=sql-server-2016
```
access check cache quota
```
描述 : Access check cache quota 和 access check cache bucket count 选项用于控制访问检查结果缓存的项数和哈希存储桶数。
默认值 : 0~65536 (默认值 0 表示 SQL Server 正在管理这些选项。默认值转换为以下内部配置。)
值范围 : 0~2147483647
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'access check cache quota', 0;
GO
RECONFIGURE
参考链接:https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/access-check-cache-server-configuration-options?view=sql-server-2016
```
-
affinity I/O mask
```
描述 : Affinity I/O mask 选项。
默认值 : 0
值范围 : -2147483648~2147483647
是否需要重启生效 : 是
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'affinity I/O mask', 0;
GO
RECONFIGURE
参考链接:https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/affinity-input-output-mask-server-configuration-option?view=sql-server-2016
```
affinity mask
```
描述 : Affinity mask 选项。
默认值 : 0
值范围 : -2147483648~2147483647
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'affinity mask', 0;
GO
RECONFIGURE
参考链接:https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/affinity-mask-server-configuration-option?view=sql-server-ver16
```
affinity64 I/O mask
```
描述 : Affinity64 I/O mask 与 affinity I/O mask 选项类似,用于将 SQL Server 磁盘 I/O 绑定到指定的 CPU 子集。
默认值 : 0
值范围 : -2147483648~2147483647
是否需要重启生效 : 是
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'affinity64 I/O mask', 0;
GO
RECONFIGURE
参考链接:https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/affinity-input-output-mask-server-configuration-option?view=sql-server-2016
```
affinity64 mask
```
描述 : Affinity64 mask 选项。affinity64 mask 将处理器绑定到特定的线程,这与 affinity mask 选项相似。
默认值 : 0
值范围 : -2147483648~2147483647
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'affinity64 mask', 0;
GO
RECONFIGURE
参考链接:https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/affinity-mask-server-configuration-option?view=sql-server-ver16
```
backup compression default
```
描述 : 备份压缩默认选项。仅在 SQL Server 2008 Enterprise 和更高版本中,如果用户不指定 WITH COMPRESSION 或 WITH NO_COMPRESSION,则由 BACKUP Transact-SQL 语句用于选择备份压缩设置。
默认值 : 1
值范围 : 0~1
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'backup compression default', 1;
GO
RECONFIGURE
参考链接:https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/view-or-configure-the-backup-compression-default-server-configuration-option?view=sql-server-ver16
```
blocked process threshold (s)
```
描述 : Blocked process threshold 选项。blocked process threshold 选项用于指定阈值(以秒为单位),超过该阈值将生成阻塞的进程报表。
默认值 : 0
值范围 : 0~86400
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'blocked process threshold (s)', 0;
GO
RECONFIGURE
参考链接:https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/blocked-process-threshold-server-configuration-option?view=sql-server-2016
```
c2 audit mode
```
描述 : C2 审核模式选项。可以通过 SQL Server Management Studio 或使用 sp_configure 中的 c2 audit mode 选项来配置 C2 审核模式。选择此选项将配置服务器,以记录对语句和对象的失败和成功的访问尝试。
默认值 : 0
值范围 : 0~1
是否需要重启生效 : 是
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'c2 audit mode', 0;
GO
RECONFIGURE
参考链接:https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/c2-audit-mode-server-configuration-option?view=sql-server-2016
```
clr enabled
```
描述 : C2 审核模式选项。可以通过 SQL Server Management Studio 或使用 sp_configure 中的 c2 audit mode 选项来配置 C2 审核模式。选择此选项将配置服务器,以记录对语句和对象的失败和成功的访问尝试。
默认值 : 0
值范围 : 0~1
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'clr enabled', 0;
GO
RECONFIGURE
参考链接:https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/clr-enabled-server-configuration-option?view=sql-server-2016
```
common criteria compliance enabled (企业版)
```
描述 : Common criteria compliance enabled 选项。common criteria compliance enabled 选项用于启用通用准则所需的下列元素。
默认值 : 0
值范围 : 0~1
是否需要重启生效 : 是
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'common criteria compliance enabled', 0;
GO
RECONFIGURE
参考链接:https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/common-criteria-compliance-enabled-server-configuration-option?view=sql-server-ver16
```
### cost threshold for parallelism
```
描述 : Cost threshold for parallelism 选项。使用 cost threshold for parallelism 选项指定 Microsoft SQL Server 创建和运行并行查询计划的阈值。
默认值 : 5
值范围 : 0~32767
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'cost threshold for parallelism', 5;
GO
RECONFIGURE
参考链接 : https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-cost-threshold-for-parallelism-server-configuration-option?view=sql-server-2016
```
cross db ownership chaining
```
描述 : Cross db ownership chaining 选项。使用 cross db ownership chaining 选项可以为 Microsoft SQL Server 实例配置跨数据库所有权链接。
默认值 : 0
值范围 : 0~1
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'cross db ownership chaining', 0;
GO
RECONFIGURE
参考链接 : https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/cross-db-ownership-chaining-server-configuration-option?view=sql-server-2016
```
cursor threshold
```
描述 : Cursor threshold 选项。使用 cursor threshold 选项可以指定游标集中的行数,超过此行数,将异步生成游标键集。
默认值 : -1
值范围 :-1~2147483647
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'cursor threshold', -1;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-cursor-threshold-server-configuration-option?view=sql-server-2016
```
default full-text language
```
描述 : Default full-text language 选项。使用 default full-text language 选项可以指定全文索引列的默认语言值。语言分析将对全文索引的所有数据执行,并且取决于数据的语言。该选项的默认值设置为服务器的语言。
默认值 : 1033
值范围 :0~2147483647
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'default full-text language', 1033;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-default-full-text-language-server-configuration-option?view=sql-server-2016
```
default language
```
描述 : Default language 选项。使用 default language 选项为所有新创建的登录指定默认语言。
默认值 : 0
值范围 :0 或 30 下拉列表
从系统表获取语言: sys.syslanguages
--> 只有0-34, 其中0代表英语us_englise,30代表简体中文 Simplified Chinese
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'default language', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-default-language-server-configuration-option?view=sql-server-ver16
```
default trace enabled
```
描述 : Default trace enabled 选项。使用 default trace enabled 选项可启用或禁用默认跟踪日志文件。默认跟踪功能提供了丰富持久的活动日志,并主要根据配置选项进行更改。
默认值 : 1
值范围 : 0~1
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'default trace enabled', 1;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/default-trace-enabled-server-configuration-option?view=sql-server-2016
```
disallow results from triggers
```
描述 : Disallow results from triggers 选项。使用 disallow results from triggers 选项可控制是否让触发器返回结果集。
默认值 : 0
值范围 : 0~1
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'disallow results from triggers', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/disallow-results-from-triggers-server-configuration-option?view=sql-server-2016
```
filestream access level
```
描述 : 文件流访问级别选项。可以使用 filestream_access_level 选项来更改此 SQL Server 实例的 FILESTREAM 访问级别。
默认值 : 0
值范围 : 0~2
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'filestream access level', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/filestream-access-level-server-configuration-option?view=sql-server-2016
```
fill factor (%)
```
描述 : Fill factor 选项。此选项设置服务器范围内的默认填充因子值。提供填充因子是为了优化索引数据存储和性能。
默认值 : 0
值范围 : 0~100
是否需要重启生效 : 是
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'fill factor (%)', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-fill-factor-server-configuration-option?view=sql-server-2016
```
ft crawl bandwidth (max)
```
描述 : Ft crawl bandwidth 选项。使用 ft crawl bandwidth 选项可指定较大内存缓冲池可增长到多大。较大内存缓冲区的大小为 4 MB。max 参数值可指定全文内存管理器应在较大缓冲池中保持的最大缓冲区数。如果 max 的值为零,则较大缓冲池中可以保持的缓冲区数没有上限。
默认值 : 100
值范围 : 0~32767
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'ft crawl bandwidth (max)', 100;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/ft-crawl-bandwidth-server-configuration-option?view=sql-server-2016
```
ft crawl bandwidth (min)
```
描述 : Ft crawl bandwidth 选项。min 参数可指定较大内存缓冲池中必须保持的最小内存缓冲区数。Microsoft SQL Server 内存管理器发出请求后,将释放所有额外的缓冲池,但将保留该最低数量的缓冲区。不过,如果指定的 min 值为零,则释放所有内存缓冲区。
默认值 : 0
值范围 : 0~32767
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'ft crawl bandwidth (min)', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/ft-crawl-bandwidth-server-configuration-option?view=sql-server-2016
```
ft notify bandwidth (max)
```
描述 : Ft notify bandwidth 选项。使用 ft notify bandwidth 选项可以指定小内存缓冲区的池可以增长到的大小。小内存缓冲区的大小为 64 KB。max 参数值指定全文内存管理器在小缓冲池中应该维护的最大缓冲区数。如果 max 值为零,则可以位于小缓冲池中的缓冲区数没有上限。
默认值 : 100
值范围 : 0~32767
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'ft notify bandwidth (max)', 100;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/ft-notify-bandwidth-server-configuration-option?view=sql-server-2016
```
ft notify bandwidth (min)
```
描述 : Ft notify bandwidth 选项。使用 ft notify bandwidth 选项可以指定小内存缓冲区的池可以增长到的大小。小内存缓冲区的大小为 64 KB。max 参数值指定全文内存管理器在小缓冲池中应该维护的最大缓冲区数。如果 max 值为零,则可以位于小缓冲池中的缓冲区数没有上限。
默认值 : 0
值范围 : 0~32767
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'ft notify bandwidth (min)', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/ft-notify-bandwidth-server-configuration-option?view=sql-server-2016
```
in-doubt xact resolution
```
描述 : In-doubt xact resolution 选项。使用 in-doubt xact resolution 选项可以控制 Microsoft 分布式事务处理协调器 (MS DTC) 无法解决的默认事务结果。事务无法解决可能与 MS DTC 停止工作或恢复时的未知事务结果有关。
默认值 : 0
值范围 : 0~2
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'in-doubt xact resolution', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/in-doubt-xact-resolution-server-configuration-option?view=sql-server-2016
```
index create memory (KB)
```
描述 : Index create memory 选项。在 SQL Server 中,index create memory 选项控制最初为创建索引分配的最大内存量。如果随后创建索引时需要更多内存,而且有内存可供使用,服务器将使用可用的内存,从而超出此选项的设置。如果没有内存可供使用,则继续使用已分配的内存来创建索引。
默认值 : 0
值范围 : 0 或 704~2147483647 0表示自动设置
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'index create memory (KB)', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-index-create-memory-server-configuration-option?view=sql-server-2016
```
lightweight pooling
```
描述 : Lightweight pooling 选项。使用 lightweight pooling 选项可以减少有时在对称多处理 (SMP) 环境下遇到的、与过多的上下文切换有关的系统开销。 如果出现过多的上下文切换,轻型池可以通过上下文切换内联化,从而降低用户/内核环的转换频率,达到提高吞吐量的目的。
默认值 : 0
值范围 : 0~1
是否需要重启生效 : 是
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'lightweight pooling', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/lightweight-pooling-server-configuration-option?view=sql-server-2016
```
locks
```
描述 : Locks 选项。使用 locks 选项可以设置可用的锁的最大个数,从而限制数据库引擎为这些锁所消耗的内存。默认设置为 0,即允许数据库引擎根据不断变化的系统要求动态地分配和释放锁结构。
默认值 : 0
值范围 : 0 或 5000~2147483647 0,即允许 数据库引擎 根据不断变化的系统要求动态地分配和释放锁结构。
是否需要重启生效 : 是
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'locks', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-locks-server-configuration-option?view=sql-server-2016
```
max degree of parallelism
```
描述 : Max degree of parallelism 选项。当 SQL Server 在具有多个微处理器或 CPU 的计算机上运行时,它将为每个并行计划执行检测最佳并行度(即运行一个语句所使用的处理器数)。
默认值 : 0
值范围 : 0~32767
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'max degree of parallelism', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-max-degree-of-parallelism-server-configuration-option?view=sql-server-2016
```
max full-text crawl range
```
描述 : Max full-text crawl range 选项。使用 max full-text crawl range 选项可以优化 CPU 使用率,从而提高完全爬网时的爬网性能。使用此选项,可以指定索引完全爬网时 Microsoft SQL Server 使用的分区数。例如,如果有许多 CPU 且它们的使用率并非最佳,则可以增加此选项的最大值。除了此选项以外,SQL Server 还使用众多其他因素(如表中的行数和 CPU 数)来确定应该使用的实际分区数。
默认值 : 4
值范围 :0~256
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'max full-text crawl range', 4;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/max-full-text-crawl-range-server-configuration-option?view=sql-server-2016
```
max server memory (MB)
```
描述 :服务器内存选项。使用 min server memory 和 max server memory 这两个服务器内存选项可以重新配置 Microsoft SQL Server 实例所使用的缓冲池的内存量 (MB)。默认情况下,SQL Server 的内存要求会根据可用系统资源的情况动态地变化。min server memory 的默认设置是 0,max server memory 的默认设置是 2147483647。
默认值 : 2147483647
值范围 :128~2147483647
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'max server memory (MB)', 2147483647;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/server-memory-server-configuration-options?view=sql-server-2016
```
max text repl size (B)
```
描述 : Max text repl size 选项。使用 max text repl size 选项,可指定使用单个 INSERT、UPDATE、WRITETEXT 或 UPDATETEXT 语句可以向复制列或已捕获列添加的 text、ntext、varchar(max)、nvarchar(max)、varbinary(max)、xml 和 image 数据的最大大小(字节)。默认值为 65536。值为 -1 表示没有限制,而非数据类型指定的限制。此选项适用于事务复制和变更数据捕获。当将服务器配置为具有事务复制功能和变更数据捕获功能时,指定的值将适用于这两项功能。快照复制和合并复制将会忽略此选项。
默认值 : 65536
值范围 :-1~2147483647
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'max text repl size (B)', 65536;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-max-text-repl-size-server-configuration-option?view=sql-server-2016
```
max worker threads
```
描述 : Max worker threads 选项。使用 max worker threads 选项可以配置 Microsoft SQL Server 进程可使用的工作线程数。SQL Server 使用 Microsoft Windows 2000 和 Windows Server 2003 操作系统的本机线程服务,从而使一个或多个线程支持 SQL Server 同时支持的每一个网络,另一个线程处理数据库检查点,而线程池则处理所有用户。
默认值 : 0
值范围 :0 或 128~65535
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'max worker threads', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-max-worker-threads-server-configuration-option?view=sql-server-2016
```
media retention
```
描述 : Media retention 选项。使用 media retention 选项,可以为各个备份集的保留时间提供一个系统范围默认值。media retention 选项可以防止在指定的日期前覆盖备份。如果设置了 media retention,则无需在每次进行系统备份时都指定系统备份的保持时间。默认值为 0 天。如果未等设定的天数过去即使用备份媒体,Microsoft SQL Server 将会发出警告消息。除非更改默认值,否则 SQL Server 不会发出警告。此选项可以由 BACKUP 命令的 RETAINDAYS 子句覆盖。
默认值 : 0
值范围 :0~365
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'media retention', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-media-retention-server-configuration-option?view=sql-server-2016
```
min memory per query (KB)
```
描述 :Min memory per query 选项。使用 min memory per query 选项指定分配给查询执行时所需要的最小内存量 (KB)。例如,如果将 min memory per query 设置为 2,048 KB,则查询保证将至少获取那么多的总内存。可以将 min memory per query 设置为从 512 到 2,147,483,647 字节 (2 GB) 的任何值。默认值为 1,024 KB。
默认值 : 1024
值范围 :512~2147483647
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'min memory per query (KB)', 1024;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-min-memory-per-query-server-configuration-option?view=sql-server-2016
```
min server memory (MB)
```
描述 :服务器内存选项。使用 min server memory 和 max server memory 这两个服务器内存选项可以重新配置 Microsoft SQL Server 实例所使用的缓冲池的内存量 (MB)。默认情况下,SQL Server 的内存要求会根据可用系统资源的情况动态地变化。min server memory 的默认设置是 0,max server memory 的默认设置是 2147483647。
默认值 : 0
值范围 :0~2147483647
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'min server memory (MB)', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/server-memory-server-configuration-options?view=sql-server-2016
```
nested triggers
```
描述 :Nested triggers 选项。使用 nested triggers 选项可控制 AFTER 触发器是否可级联;级联是指执行某项操作将初始化另一个触发器,而该触发器又将初始化另外一个,依此类推。如果 nested triggers 设置为 0,AFTER 触发器不能级联。如果 nested triggers 设置为 1(默认值),AFTER 触发器最多能级联 32 级。不管此选项如何设置,INSTEAD OF 触发器都可以嵌套。
默认值 : 1
值范围 :0~1
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'nested triggers', 1;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-nested-triggers-server-configuration-option?view=sql-server-2016
```
network packet size (B)
```
描述 :Network packet size 选项。使用 network packet size 选项可以设置整个网络中使用的数据包大小(以字节为单位)。
默认值 : 4096
值范围 :512~32767
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'network packet size (B)', 4096;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-network-packet-size-server-configuration-option?view=sql-server-2016
```
optimize for ad hoc workloads
```
描述 :针对即席工作负荷进行优化。针对即席工作负荷进行优化”选项用于提高包含许多一次性临时批处理的工作负荷计划缓存的效率。如果该选项设置为 1,则数据库引擎将在首次编译批处理时在计划缓存中存储一个编译的小计划存根,而不是存储完全编译的计划。这种情况下不会让未重复使用的编译计划填充计划缓存,从而有助于缓解内存压力。
默认值 : 0
值范围 :0~1
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'optimize for ad hoc workloads', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/optimize-for-ad-hoc-workloads-server-configuration-option?view=sql-server-2016
```
priority boost
```
描述 :Priority boost 选项。使用 priority boost 选项可以指定 Microsoft SQL Server 是否应当以比相同计算机上的其他进程更高的 Microsoft Windows 2000、Windows Server 2003、Windows 2008 或 Windows 2008 R2 计划优先级运行。如果将该选项设置为 1,SQL Server 将以优先级基数 13 在 Windows 2000、Windows Server 2003、 Windows 2008 或 Windows 2008 R2 计划程序中运行。默认值为 0,其优先级基数为 7。
默认值 : 0
值范围 :0~1
是否需要重启生效 : 是
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'priority boost', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-priority-boost-server-configuration-option?view=sql-server-2016
```
query governor cost limit
```
描述 :Query governor cost limit 选项。使用 query governor cost limit 选项指定查询可以运行的时间段上限。估计运行时间超过此限制的查询返回一个错误且不执行。查询开销是指在特定硬件配置中完成查询所需的估计占用时间(以秒为单位)。
默认值 : 0
值范围 :0~2147483647
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'query governor cost limit', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-priority-boost-server-configuration-option?view=sql-server-2016
```
query wait (s)
```
描述 :Query wait 选项。query wait 选项可以指定一个查询在超时前等待所需资源的时间(以秒为单位,范围从 0 到 2147483647)。如果使用默认值 -1 或指定 -1,则可计算出超时时间是估计查询开销的 25 倍。
默认值 : -1
值范围 :-1~2147483647
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'query wait (s)', -1;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-query-wait-server-configuration-option?view=sql-server-2016
```
recovery interval (min)
```
描述 :Recovery interval 选项。使用 recovery interval 选项可以设置每个 Microsoft SQL Server 还原数据库所需的最大分钟数。每次当 SQL Server 实例启动时,它就会恢复各个数据库,回滚未提交的事务,并前滚已提交但更改内容在 SQL Server 实例停止时尚未写入磁盘中的事务。此配置选项设置了 SQL Server 在恢复每一个数据库时所应花时间的上限。默认值为 0,指示由 SQL Server 自动配置。实际上,这表示每个数据库的恢复时间不超过 1 分钟,对于每个活动的数据库大约每 1 分钟有一个检查点。
默认值 : 0
值范围 :0~32767
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'recovery interval (min)', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-recovery-interval-server-configuration-option?view=sql-server-2016
```
remote access
```
描述 :Remote access 选项。使用 remote access 选项可以从运行 Microsoft SQL Server 实例的本地或远程服务器上控制存储过程的执行。将 remote access 设置为 1表示允许从远程服务器执行本地存储过程或从本地服务器执行远程存储过程。将此选项设置为 0(默认值)表示阻止本地存储过程在远程服务器上执行或远程存储过程在本地服务器上执行。
默认值 : 1
值范围 :0~1
是否需要重启生效 : 是
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'remote access', 1;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-remote-access-server-configuration-option?view=sql-server-2016
```
remote admin connections
```
描述 :Remote admin connections 选项。SQL Server 提供了专用管理员连接 (DAC)。DAC 允许管理员访问运行的服务器以执行诊断函数或 Transact-SQL 语句,或对服务器上的问题进行故障排除,即使服务器已锁定或在非正常状态下运行以及不响应 SQL Server 数据库引擎 连接。默认情况下,只有服务器上的客户端可以使用 DAC。若要在远程计算机上启用客户端应用程序以使用 DAC,请使用 sp_configure 的远程管理连接选项。
默认值 : 0
值范围 :0~1
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'remote admin connections', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/remote-admin-connections-server-configuration-option?view=sql-server-2016
```
remote login timeout (s)
```
描述 :Remote login timeout 选项。使用 remote login timeout 选项可以指定远程登录失败返回前等待的秒数。例如,如果您尝试登录到一个远程服务器而该服务器已关闭,remote login timeout 可确保您在计算机停止登录尝试前不必无限期地等待下去。
默认值 : 10
值范围 :0~2147483647
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'remote login timeout (s)', 10;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-remote-login-timeout-server-configuration-option?view=sql-server-2016
```
remote proc trans
```
描述 :Remote proc trans 选项。使用 remote proc trans 选项可通过 Microsoft 分布式事务处理协调器 (MS DTC) 事务保护服务器到服务器过程的操作。将 remote proc trans 设置为 1 以提供 MS DTC 协调的分布式事务,该事务能保护事务的 ACID(原子、一致、隔离和持久)属性。将该选项设置为 1 后所有新开始的会话会继承该设置并将它作为默认值。
默认值 : 1
值范围 :0~1
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'remote proc trans', 1;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-remote-proc-trans-server-configuration-option?view=sql-server-2016
```
remote query timeout (s)
```
描述 :Remote query timeout 选项。使用 remote query timeout 选项可指定在 Microsoft SQL Server 超时之前远程操作可以持续的时间(秒)。默认值为 600,表示允许等待 10 分钟。该值将应用到由作为远程查询的数据库引擎初始化的发送连接。该值不会对数据库引擎接收的查询产生任何影响。
默认值 : 600
值范围 :0~2147483647
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'remote query timeout (s)', 600;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-remote-query-timeout-server-configuration-option?view=sql-server-2016
```
scan for startup procs
```
描述 :Scan for startup procs 选项。使用 scan for startup procs 选项扫描在 Microsoft SQL Server 启动时自动执行的存储过程。如果将该选项设置为 1,则 SQL Server 将扫描服务器上定义的所有自动运行的存储过程,并运行这些过程。scan for startup procs 的默认值为 0(不扫描)。
默认值 : 0
值范围 :0~1
是否需要重启生效 : 是
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'scan for startup procs', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-remote-query-timeout-server-configuration-option?view=sql-server-2016
```
server trigger recursion
```
描述 :Server trigger recursion 选项。使用 server trigger recursion 选项可指定是否允许服务器级触发器递归激发。当此选项设置为 1 (ON) 时,将允许服务器级触发器递归激发。当设置为 0 (OFF) 时,服务器级触发器不能递归激发。当 server trigger recursion 选项设置为 0 (OFF) 时,仅阻止直接递归。(若要禁用间接递归,请将 nested triggers 选项设置为 0。)该选项的默认值为 1 (ON)。该设置更改后立即生效,而不需要重新启动服务器。
默认值 : 1
值范围 :0~1
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'server trigger recursion', 1;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/server-trigger-recursion-server-configuration-option?view=sql-server-2016
```
set working set size
```
描述 :Set working set size 选项。
默认值 : 0
值范围 :0~1
是否需要重启生效 : 是
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'set working set size', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/set-working-set-size-server-configuration-option?view=sql-server-2016
```
show advanced options
```
描述 :Show advanced options 选项。show advanced options 选项用来显示 sp_configure 系统存储过程高级选项。当 show advanced options 设置为 1 时,可以使用 sp_configure 列出高级选项。默认值为 0。
默认值 : 1
值范围 :0~1
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'show advanced options', 1;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/show-advanced-options-server-configuration-option?view=sql-server-2016
```
transform noise words
```
描述 :Transform noise words 选项。使用 transform noise words 选项可以取消干扰词或 stopwords 导致全文查询的布尔操作失败或返回零行时产生的错误消息。此选项对于使用其布尔操作包括干扰词的 CONTAINS 谓词的全文查询非常有用。
默认值 : 0
值范围 :0~1
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'transform noise words', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/transform-noise-words-server-configuration-option?view=sql-server-2016
```
two digit year cutoff
```
描述 :Two digit year cutoff 选项。two digit year cutoff 选项为了将 2 位数字的年份解释为 4 位数字的年份,从 1753 到 9999 之间选出一个整数来表示世纪截止年份。
默认值 : 2049
值范围 :1753~9999
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'two digit year cutoff', 2049;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-two-digit-year-cutoff-server-configuration-option?view=sql-server-2016
```
user connections
```
描述 :User connections 选项。使用 user connections 选项可以指定 Microsoft SQL Server 上允许同时建立的最大用户连接数。实际允许的用户连接数还取决于正使用的 SQL Server 版本以及应用程序和硬件的限制。SQL Server 允许的最大用户连接数为 32767。
默认值 : 0
值范围 :0 或 10~32767 (默认值为 0,表示允许的最多用户连接数为 (32,767) 。实际范围0-32767,这里10应该是为了避免设置用户数过小导致不可用)
是否需要重启生效 : 是
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'user connections', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-user-connections-server-configuration-option?view=sql-server-2016
```
user options
```
描述 :User options 选项。使用 user options 选项可以指定适用于所有用户的全局默认值。将针对用户工作会话的持续时间,建立一个默认查询处理选项的列表。user options 选项允许您更改 SET 选项的默认值(如果服务器的默认设置不合适)。用户可以使用 SET 语句覆盖这些默认值。可以为新登录名动态配置 user options。更改 user options 的设置后,新的登录名会话将使用新的设置,当前登录名会话受不影响。
默认值 : 0
值范围 :0~32767
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'user options', 0;
GO
RECONFIGURE
参考链接 :https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/configure-the-user-options-server-configuration-option?view=sql-server-2016
```
xp_cmdshell
```
描述 :Xp_cmdshell 选项。SQL Server 2005 中引入的 xp_cmdshell 选项是服务器配置选项,使系统管理员能够控制是否可以在系统上执行 xp_cmdshell 扩展存储过程。
默认值 : 0
值范围 :0~1
是否需要重启生效 : 否
修改方式:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'xp_cmdshell', 0;
GO
RECONFIGURE
参考链接 : https://learn.microsoft.com/zh-cn/sql/database-engine/configure-windows/xp-cmdshell-server-configuration-option?view=sql-server-2016
```