SQL Server でのアドホック分散クエリの有効化
SQL Server 2000 でシームレスに機能していた OpenRowset クエリは、SQL Server 2008 ではよく次のエラーが発生します。 :
SQL Server blocked access to STATEMENT 'OpenRowset/OpenDatasource' of component 'Ad Hoc Distributed Queries' because this component is turned off as part of the security configuration for this server.
へこのエラーを解決し、アドホック分散クエリを有効にするには、sp_configure を使用して次の手順に従います。
-- Show advanced server configuration options EXEC sp_configure 'show advanced options', 1 RECONFIGURE -- Enable Ad Hoc Distributed Queries EXEC sp_configure 'ad hoc distributed queries', 1 RECONFIGURE
これらのコマンドを実行した後、SQL Server 2008 インスタンスでアドホック分散クエリが有効になるはずです。これにより、OpenRowset クエリが正常に実行されるようになります。
以上がSQL Server でアドホック分散クエリを有効にする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。