I'm trying to get the output values of a stored procedure into a table as below
Insert #temptable
Exec Stored_proc @param1, @parm2
I thought that this was possible but I get this error message.
"An INSERT EXEC statement cannot be nested."
Is this possible at all?
Insert #temptable
Exec Stored_proc @param1, @parm2
I thought that this was possible but I get this error message.
"An INSERT EXEC statement cannot be nested."
Is this possible at all?