cancel
Showing results for 
Search instead for 
Did you mean: 

Multiple record sets returned from stored proceedure

Former Member
0 Kudos

I have a stored procedure in SQL2005 that returns multiple record sets. When I call the procedure from xMII using a fixedquery, I only get the first record set returned. Her is the syntax I am using:

EXECUTE [dbo].[GetSettings] 
   0
  ,0

Any help is appreciated.

Regards,

Christian

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Can't do it with xMII, Christian. If the recordsets are the same "shape", you'll need to union them in the stored proc and output a single resultset.

Answers (1)

Answers (1)

Former Member
0 Kudos

Thanks Rick