I have stored procdures returning a recordset
they basically look like this
create proc1
select col1, col2, col3
from tbl1
create proc2
select col1, col2
from tbl2
I have more than 30 of them
what I really want is how many records these procedures are returning;
I don't want to go and alter these procedures to have output parameter
can you suggest simple and efficient way?
Thanks
they basically look like this
create proc1
select col1, col2, col3
from tbl1
create proc2
select col1, col2
from tbl2
I have more than 30 of them
what I really want is how many records these procedures are returning;
I don't want to go and alter these procedures to have output parameter
can you suggest simple and efficient way?
Thanks