Stored Proc problem

  • Thread starter Thread starter manoj241176
  • Start date Start date
M

manoj241176

Hi,
I am having stored proc which returns 2 resultsets, now i want to
call this stored proc within another stored proc, but i want to use
only the second resultset from the previous stored proc. So please tell
me how can i do this.??

Thanks in advance,

Regards,
Manoj Singh.
 
Hi Manoj,

Split the first procedure (the one that produces two results sets), into two different procedures. Call only the procedure that
produces the second result set.
 
Back
Top