• 【转载】解决SQL Server 阻止了对组件 'Ad Hoc Distributed Queries' 的 STATEMENT'OpenRowset/OpenDatasource' 的访问的方法


    1、开启Ad Hoc Distributed Queries组件,在sql查询编辑器中执行如下语句:

    exec sp_configure 'show advanced options',1
    reconfigure
    exec sp_configure 'Ad Hoc Distributed Queries',1
    reconfigure

    2、关闭Ad Hoc Distributed Queries组件,在sql查询编辑器中执行如下语句:

    exec sp_configure 'Ad Hoc Distributed Queries',0
    reconfigure
    exec sp_configure 'show advanced options',0
    reconfigure

     转载自:https://www.cnblogs.com/tohen/p/4228030.html

  • 相关阅读:
    json
    封装PDO
    PDO
    jquery练习
    jquery包
    jquery
    租房子 多条件查询
    查询
    新闻修改处理页面
    新闻添加数据
  • 原文地址:https://www.cnblogs.com/LMJBlogs/p/7856193.html
Copyright © 2020-2023  润新知