0
我遇到了與文章Using OPENROWSET to dynamically retrieve SP results when SP contains # temp tables中描述的問題非常類似的問題。SQL Server - OPENROWSET錯誤
使用變通我在化妝的東西的工作取得成功:
SELECT *
FROM OPENROWSET('SQLNCLI',
'Server=SERVERNAME;Trusted_Connection=yes;',
'SET FMTONLY OFF; SET NOCOUNT ON; exec DatabaseName.dbo.zzTempSP @A=1,@B=2'
)
但我想找出爲何出現錯誤。