跨服務器讀寫數據

跨服務器讀寫數據時報錯:sql

select * from
opendatasource('SQLOLEDB',
'Data Source=173.02.01.102;Initial Catalog=testdb;
User ID=sa;PWD=123;').testdb.dbo.ATCEdit2安全

報錯內容是: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組件被禁用了,方法以下:編輯器

    1.開啓Ad Hoc Distributed Queries組件,在sql查詢編輯器中執行以下語句:spa

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

    2.關閉Ad Hoc Distributed Queries組件,在sql查詢編輯器中執行以下語句:it

exec sp_configure 'Ad Hoc Distributed Queries',0 reconfigure exec sp_configure 'show advanced options',0 reconfigure
相關文章
相關標籤/搜索