zoukankan      html  css  js  c++  java
  • Ad hoc update to system catalogs is not supported

    exec sp_configure 'show advanced options',1
    RECONFIGURE
    exec sp_configure 'Ad Hoc Distributed Queries',1
    RECONFIGURE 
    
    运行以上语句报错,报错内容如下:
    Configuration option 'show advanced options' changed from 1 to 1. Run the RECONFIGURE statement to install.
    Msg 5808, Level 16, State 1, Line 49
    Ad hoc update to system catalogs is not supported.
    
    最后改为以下就不会报错
    exec sp_configure 'show advanced options',1
    RECONFIGURE  WITH OVERRIDE
    exec sp_configure 'Ad Hoc Distributed Queries',1
    RECONFIGURE WITH OVERRIDE
    
    运行结果如下:
    Configuration
    option 'show advanced options' changed from 1 to 1. Run the RECONFIGURE statement to install. Configuration option 'Ad Hoc Distributed Queries' changed from 1 to 1. Run the RECONFIGURE statement to install.

    关于RECONFIGURERECONFIGURE WITH OVERRIDE的区别,我查阅的在线文档是这样解释的:

    RECONFIGURE 和 RECONFIGURE WITH OVERRIDE 对每个配置选项都有效。 但是,基本 RECONFIGURE 语句会拒绝处于合理范围之外或可能导致选项冲突的任何选项值。 例如,如果 recovery interval 的值大于 60 分钟,或 affinity mask 的值与 affinity I/O mask 的值重叠,则 RECONFIGURE 会生成错误。 与此相反,RECONFIGURE WITH OVERRIDE 则接受具有正确数据类型的任何选项值,并使用指定的值强制进行重新配置。

    注意: 不合适的选项值会给服务器实例的配置造成不利影响。 请谨慎使用 RECONFIGURE WITH OVERRIDE。

    另外有关RECONFIGURE 我们需要知道以下情况:

    RECONFIGURE 语句可以动态更新某些选项,而其他选项的更新则需要停止服务器再重新启动才能实现。 例如,在数据库引擎中会动态更新 min server memorymax server memory 服务器内存选项,所以无需重新启动服务器便可更改这两个选项。 与此相反,重新配置 fill factor 选项的运行值时,则需要重新启动数据库引擎。

    对某个配置选项运行 RECONFIGURE 后,可通过执行 sp_configure'option_name' 来查看是否已动态更新了该选项。 对于动态更新的选项而言,run_value 列和 config_value 列的值应匹配。 还可以通过查看 sys.configurations 目录视图的 is_dynamic 列来确定哪些选项是动态的。

    注意:如果为选项指定的 value 值过高,则 run_value 列将反映这样的事实:数据库引擎默认使用动态内存,而不使用无效设置。

  • 相关阅读:
    Android控件Editext、TextView属性详解
    修改Android签名证书keystore的密码、别名alias以及别名密码
    android 中如何限制 EditText 最大输入字符数
    keytool 错误 java.io.IOException: incorrect AVA format
    Android打包常见错误之Export aborted because fatal lint errors were found
    正则表达式之判断用户注册信息是否为汉字、字母和数字
    Android Dialog 系统样式讲解及透明背景
    Android中自定义Activity和Dialog的位置大小背景和透明度等
    字体在Android View中的输出 drawText
    怎么用CIFilter给图片加上各种各样的滤镜_1
  • 原文地址:https://www.cnblogs.com/shihuai355/p/3968300.html
Copyright © 2011-2022 走看看