0
votes

I have a SSIS Package "Parent" that calls another package called "child". I can send parameters from Parent to Child, but i need to send a value on Child user variables to the parent. I know there's no native way of doing this, but how can i do that?

2
there is a good discussion in here: stackoverflow.com/questions/20288766/…Jayvee

2 Answers

0
votes

Why don't you create a user variable and update it during your package "child" execution. Then you can use this value where you want.

0
votes

Look's like you can access a "parent" variable in Script Task. You just need to remove the User:: prefix from the variable name, and it will look on the "global" scope.

This way, its possible to "return" values to the parent package