开启MSSQLServer跨服务器查询功能

  • 首先在MSSQL客户端中进行如下图文操作配置


  • 其次使用脚本进行操作配置

    ---开启SQLServer 跨服务器查询功能

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

    --关闭SQLServer 跨服务器查询功能

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

 

posted on 2014-10-22 09:55  GeorgeYao  阅读(611)  评论(2编辑  收藏  举报