我遇到的问题与文章Using OPENROWSET to dynamically retrieve SP results when SP contains # temp tables中描述的完全相同。
使用解决方法我成功地使东西工作:
SELECT *
FROM OPENROWSET( 'SQLNCLI',
'Server=SERVERNAME;Trusted_Connection=yes;',
'SET FMTONLY OFF; SET NOCOUNT ON; exec DatabaseName.dbo.zzTempSP @A=1,@B=2'
)
但我想找出错误发生的原因。