Apologies if this has been asked before, but I wasn't able to find anything that worked for me.
I have a stored procedure that has two OUTPUT parameters:
CREATE PROCEDURE dbo.xxx
.
.
.
@param1 INT OUTPUT,
@param2 INT OUTPUT
AS
and I want to call it from another stored procedure.
I know how to do it when there is one OUTPUT parameter, but I don't know how to call it so I also get the value of the second one. Any ideas?
Thanks in advance :)