In SSIS (sql server 2008) I have a Sql task which is calling my stored procedure. The stored procedure gets 1 input parameter and return 2 output parameters. This is the prototype of my SP:
declare spGetPersonDetails(personid int, @orders xml output, @names xml output ) as.....
The problem is that in my sql task in iis, i declared these 3 parameters. one input and 2 outputs, and when it's running only one of the output parameters gets a value from the sp.
Any idea?
Thanks.