Greetings,
I am looking into utilising the new project deployment model for SSIS with MSSQL 2012.
I have created a simple project that has a entrypoint package calling a number of child packages, where the check point file name property is populated via an expression that references an project parameter named CheckPointFileNameBase.
The child packages are executed via an execute package task (in process)
When the SSIS project is tested in VSDT, everything works as expected and the checkpoint files are created.
When the SSIS project is deployed to MSSQL Integaration Services Catalog, configured and executed; the child package fails to execute.
The error is that there is no appropriate variable for the check point file name property. When I execute the child package directly with the same configuration as for the entry point package then the execution succeeds.
Thus my question is how to correctly configure the deployed package such that project parameters are available to all child packages?
The route I dont want to take is to pass the parameters from entry point to child package as this would defeat the purpose of shared project parameters.
Thank you and Kind Regards