I have got a task in SSIS in which I have to create a variable of type OBJECT in the parent package and retrieve all the rows of a column of a table. And then I need to insert the required values to their respective variables in the child packages.
Earlier I have used SINGLE ROW RESULT SET to store the result of the query and then with the help of Package Configurations I have assigned the value of parents variable to the respective child package variable. But this is laborious work as I have many such values to assign.
How can I do this with FULL RESULT SET ?
PLS HELP!!!