This is an addendum to this question that was asked earlier without an answer.
The problem I have is the need to periodically update a set of 35 single parent parent SSIS packages. They are all the same, differing only in what data they process. When I make the changes, I delete all the children and paste them again into the same folder, updating the value of the variable telling the package which child package it knows what data to process (has a value of 1-35),
My goal was to find a solution that allows the packages to somehow know who they are (by file name, variable, configuration, etc.) so that it reduces maintenance and production settings after the upgrade.
The package file names contain the added numerical value after insertion (packagename 1, packagename 2, .... packagename X) in the same folder. I use package deployment in SSIS 2012, so I do not have access to the file name as a parameter, as if I were using project deployment. All packages are in the SSDT solution with the parent package, in which all 35 children are involved. When deploying packages, I use the configurations in the SQL table to change the file path as it moves from server to server.
I would like to automate other things related to children, but I cannot, unless I first resolve this part. In addition, I need to add another 15 children or so, and this will save a lot of time.
Any help is appreciated
source share