标签:logs end 自己 服务 set figure pen sql 执行
报错:(这是代理服务问题)
在执行下面这条SQL 语句的时候,提示:消息 15281,级别 16,状态 1,第 1 行
SQL Server 阻止了对组件 ‘Ad Hoc Distributed Queries‘ 的 STATEMENT‘OpenRowset/OpenDatasource‘ 的访问,因为此组件已作为此服务器安全配置的一部分而被关闭。系统管理员可以通过使用 sp_configure 启用 ‘Ad Hoc Distributed Queries‘。有关启用 ‘Ad Hoc Distributed Queries‘ 的详细信息,请参阅 SQL Server 联机丛书中的 "外围应用配置器"。
执行下面的语句即可
--开启
exec sp_configure ‘show advanced options‘,1
reconfigure
exec sp_configure ‘Ad Hoc Distributed Queries‘,1
reconfigure
如若执行上面两句还报错,根据提示进行安装。如下面的语句
exec sp_configure ‘Ole Automation Procedures‘,1
reconfigure
当结果显示为如图则证明开启成功
理解不深,只是给自己记个笔记,有更深理解,或者觉得我的理解有错误的地方欢迎留言以及斧正。
标签:logs end 自己 服务 set figure pen sql 执行
原文地址:http://www.cnblogs.com/MeiShadow/p/7028944.html