Hi.
I want to get the result set of a sub sp's
eg
create proc test
as
begin
select * from authors
end
exec test
if i execute the above statement i will get the result set.
in main sp i want to to get those resultset and to some calculation.
can any one explain how can we do it.