Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Output to Temporary Table in SQL Server 2005

I am trying to use the OUTPUT clause inside a stored procedure to output to a temporary table the values of an indentity column after an INSERT.

CREATE TABLE #Test
(
    ID INT
)

INSERT INTO [TableB] OUTPUT INSERTED.ID #Test SELECT * FROM [TableA]

However, when I execute this procedure SQL Server shows me the results in a table (correctly) called Test but if I write SELECT * FROM #Test as the next statement in the stored procedure it shows me nothing. How can I efectively accomplish this?

like image 561
B.M Avatar asked Jun 09 '11 11:06

B.M


1 Answers

I think you're missing an INTO - try this:

CREATE TABLE #Test(ID INT)

INSERT INTO [TableB] 
    OUTPUT INSERTED.ID INTO #Test 
    SELECT * FROM [TableA]

After the list of columns to OUTPUT, add an INTO before the table name

like image 72
marc_s Avatar answered Oct 01 '22 22:10

marc_s