We have a simple proc that executes two oter procs (eg):
CREATE PROCEDURE spCaller
exec spOne
exec spTwo
GO
It works OK, but returns 2 grids in Query Analyser. When we use spCaller in ASP and use the "for each item in rsTemp" command to enunciate the output, we get all the name/value pairs in the first grid (from spOne) but none of the output from spTwo. I'm not sure if this is an ASP question, or something to do with cascading Procs.
Any ideas?
Thanks
Mike