Ad Hoc Distributed Queries

  • Ad Hoc Distributed Queriesの有効化

SQLServerは既存では、OPENROWSETなどの分散クエリが実行できません。下記のコマンドで有効化します。

 

sp_configure 'show advanced options', 1
reconfigure with override
GO

sp_configure 'Ad Hoc Distributed Queries', 1
reconfigure with override
GO

sp_configure 'show advanced options', 0
reconfigure with override
GO

 


管理人 has written 36 articles