解决SQL Server 阻止了对组件 'Ad Hoc Distributed Queries' 的 STATEMENT'OpenRowset/OpenDatasource' 的访问的方法...
今天單位一ASP.NET網站,里面有個功能是導出數據,發現一導出就報錯,報錯內容是:SQL? Server 阻止了對組件 'Ad Hoc Distributed Queries' 的? STATEMENT'OpenRowset/OpenDatasource'? 的訪問,因為此組件已作為此服務器安全配置的一部分而被關閉。系統管理員可以通過使用 sp_configure 啟用 'Ad Hoc? Distributed Queries'。有關啟用 'Ad Hoc Distributed Queries' 的詳細信息,請參閱 SQL? Server 聯機叢書中的 "外圍應用配置器"。
??? 看錯誤提示就知道是因為SQL Server的Ad Hoc Distributed Queries組件被禁用了,這里我用的SQL Server版本是2005,只需要開啟Ad Hoc Distributed Queries就可以了,方法如下:
??? 1.開啟Ad Hoc Distributed Queries組件,在sql查詢編輯器中執行如下語句:
exec sp_configure 'show advanced options',1reconfigure
exec sp_configure 'Ad Hoc Distributed Queries',1
reconfigure
??? 2.關閉Ad Hoc Distributed Queries組件,在sql查詢編輯器中執行如下語句:
exec sp_configure 'Ad Hoc Distributed Queries',0reconfigure
exec sp_configure 'show advanced options',0
reconfigure
總結
以上是生活随笔為你收集整理的解决SQL Server 阻止了对组件 'Ad Hoc Distributed Queries' 的 STATEMENT'OpenRowset/OpenDatasource' 的访问的方法...的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 如何快速解决家里的窗户漏风?
- 下一篇: 如何正确选择家庭装修风格?