September 7, 2015 at 5:01 am
How to dynamically pass value to the child package variable by using Execute Package Task?
I need to call a package(child) from another package (parent) concurrently. In every call, I require to pass different value to child package variable
I have tried using parameter bindings in Execute Package Task but it passes only empty values.
Thanks in advance
September 7, 2015 at 5:14 am
So you have one parent and multiple child package, each child package needs to be executed in parallel ( concurrently), In this case you need unique variables defined for each child packages and then have the parent packge assign values to each child package variable indivigually.
If you try to resuse the same variable in each child package you will get error since the variable is locked during assignment and therefore unaviable for other packages to use.
September 7, 2015 at 5:32 am
Jayanth_Kurup (9/7/2015)
So you have one parent and multiple child package,
No, one parent and one child. 3 different tasks to run same child. I want to pass different variables from parent to a single child variable
September 7, 2015 at 5:43 am
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply