TSQL查詢Excel數據使用openrowset一般會報以下錯誤:sql
消息 15281,級別 16,狀態 1,第 1 行 SQL Server 阻止了對組件 'Ad Hoc Distributed Queries' 的 STATEMENT 'OpenRowset/OpenDatasource' 的訪問,由於此組件已做爲此服務器安全配置的一部分而被關閉。系統管理員能夠經過使用 sp_configure 啓用 'Ad Hoc Distributed Queries'。有關啓用 'Ad Hoc Distributed Queries' 的詳細信息,請參閱 SQL Server 聯機叢書中的 "外圍應用配置器"。
1.開啓Ad Hoc Distributed Queries組件,在sql查詢編輯器中執行以下語句:
安全
EXEC sp_configure 'show advanced options', 1 GO RECONFIGURE GO EXEC sp_configure 'Ad Hoc Distributed Queries', 1 GO RECONFIGURE GO
2.關閉Ad Hoc Distributed Queries組件,在sql查詢編輯器中執行以下語句:
服務器
EXEC sp_configure 'Ad Hoc Distributed Queries', 0 RECONFIGURE EXEC sp_configure 'show advanced options', 0 RECONFIGURE