[SQL][.NET] SQL Servere 2005の'Ad Hoc Distributed Queries'エラー解除方法
「SQL Server によって、コンポーネント 'Ad Hoc Distributed Queries' の STATEMENT 'OpenRowset/OpenDatasource' に対するアクセスがブロックされました。サーバーのセキュリティ構成で、このモジュールが OFF に設定されているためです。システム管理者は sp_configure を使用して、'Ad Hoc Distributed Queries' の使用を有効にできます。」というエラーが出た場合、SQL Server 2005 Management Studioの新規クエリにて以下のコマンドを実行します。
USE FooBarDB -- DB名
EXECUTE sp_configure 'show advanced options', 1
RECONFIGURE
EXECUTE sp_configure 'Ad Hoc Distributed Queries', 1
RECONFIGURE
Go