1. 程式人生 > >SQL Server 'Ad Hoc Distributed Queries' 的 STATEMENT'OpenRowset/OpenDatasource' 的訪問的方法

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