How can I ignore an output parameter of a stored procedure. I'm calling the sp from another sp.
e.g.:
DECLARE @param1 integer
EXEC mystoredprocedure @in_param_1, @in_param2_, @param1 OUTPUT, what do I type here to ignore the second output param
I'm using T-SQL (MS SQL 2005).
Thanks for your help.