Table Argument as OUTPUT
I want to pass a table variable into a procedure that has table argument as output, but not as read only! I want to be able to modify that argument inside the PROC. Is this possible? If it's not possible, is there another way to do this?
thanks!
You'd have to copy the table valued parameter into a table variable or temp table
After comment, a table valued parameter can not be declared OUTPUT. From CREATE PROC