Tagged Questions
The output-clause tag has no wiki summary.
3
votes
7answers
177 views
Output columns not in destination table?
SUMMARY:
I need to use an OUTPUT clause on an INSERT statement to return columns which don't exist on the table into which I'm inserting. If I can avoid it, I don't want to add columns to the table ...
2
votes
1answer
1k views
Output Clause: The multi-part identifier could not be bound
I am running in to the dreaded "The multi-part identifier could not be bound" error on a stored procedure I am currently working on. I have a few questions in regards to the query below.
Why am I ...
2
votes
4answers
792 views
OUTPUT clause for Stored Procedure vs Table-Valued Function
I'm studying for the MCTS 70-433 "Database Design" cert, and in the text that I'm studying, one of the self-tests has this question.
You have a stored procedure named
Get_NewProducts. You wish ...
1
vote
2answers
175 views
DELETE from two tables with one OUTPUT clause?
This deletes the document from the Document table and outputs information about the deleted document into the FinishedDocument table.
DELETE
FROM Document
OUTPUT Deleted.DocumentId
, ...
0
votes
1answer
54 views
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 ...
0
votes
1answer
712 views
Aliasing inserted and deleted virtual tables in a trigger
How do I alias the inserted and deleted virtual tables in a trigger in MSSQL 2005 so that I can use another set of inserted and deleted virtual tables from an OUTPUT clause later in the trigger?
I ...