How do I pass a file from parent to child package in SSIS?

108 views Asked by At

Recently started working on SSIS package, I have two packages _main.dtsx & child.dtsx. the _main package contains foreach loop that parses through all the files in a specific folder on C: drive. Depending on the name of file I have added a constraint that only file which has word "accounts" will get picked up & should be passed to the child package that does the work of inserting the file data to database.

I have created a input package parameter in the child package as varFileName and added in the parameter binding on the main package where the Child's "Execute Package Task" is present in the loop container. The problem I'm facing now is how do I pass that parameter as an input source in the child's data flow task so that the data can be inserted into the database table.

As it is SSIS package there is not code & couldn't find the best way to explain the problem.

0

There are 0 answers