标签:history params open create row insert rowset bsp into
解决方案1:
CREATE TABLE #tmpBus
(
COL1 INT,
COL2 INT
)
INSERT INTO #tmpBus
Exec SpGetRecords ‘Params‘
解决方案2:
SELECT * INTO #MyTempTable FROM OPENROWSET(‘SQLNCLI‘, ‘Server=(local)\SQL2008;Trusted_Connection=yes;‘,
‘EXEC getBusinessLineHistory‘)
标签:history params open create row insert rowset bsp into
原文地址:http://www.cnblogs.com/bi-info/p/6215343.html