How do I do a SELECT * INTO [temp table] FROM [stored procedure]
?
(如何SELECT * INTO [temp table] FROM [stored procedure]
进行SELECT * INTO [temp table] FROM [stored procedure]
?)
Not FROM [Table]
and without defining [temp table]
? (不是FROM [Table]
,也没有定义[temp table]
?)
Select
all data from BusinessLine
into tmpBusLine
works fine.
(从BusinessLine
Select
所有数据到tmpBusLine
可以正常工作。)
select *
into tmpBusLine
from BusinessLine
I am trying the same, but using a stored procedure
that returns data, is not quite the same.
(我正在尝试相同的方法,但是使用返回数据的stored procedure
并不完全相同。)
select *
into tmpBusLine
from
exec getBusinessLineHistory '16 Mar 2009'
Output message:
(输出信息:)
Msg 156, Level 15, State 1, Line 2 Incorrect syntax near the keyword 'exec'.
(消息156,级别15,状态1,第2行关键字“ exec”附近的语法错误。)
I have read several examples of creating a temporary table with the same structure as the output stored procedure, which works fine, but it would be nice to not supply any columns.
(我已经阅读了几个创建与输出存储过程具有相同结构的临时表的示例,该示例工作正常,但是最好不要提供任何列。)
ask by Ferdeen translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…