SQL time! Anyone know an easy way to execute a stored procedure that returns an integer and force it to skip returning any output? I'm having a bad google day, so I'm hoping someone here knows how to do this.
Can you use a variable and then just not use that variable again? i.e.
Declare @return int
exec @return = sp_somestoredprocedure @param1='a', @param2='b' etc