Hello,
We have started using the new "Event Logging" feature provided for SSIS 2012 Project Deployment model.
We have a complex ETL system comprised of multi-level package calls between parent-child packages.
For example, a Master package has a For Each Container, which contains a "Execute Package Task", which runs child packages 1 to 5. Each Child package has Data Flow Tasks (which contain data flow sources, transformations and destinations.) and For Each Containers which can contain level 2 child-packages via "Execute Package Tasks"
Master Pkg
Level-1 Child Pkgs
Level-2 Child Pkgs
.........
How can we use event logging data to trace back executales in Level 2 child packages to their calling Level 1 and Master Package executables?
I notice that [SSISDB].[catalog].[executable_statistics] view has a column '[execution_path]' which shows the execution hierarchy textually, however, we would like to be able to link it back via the Executable Ids.
In addition, can we find out the values of variables, parameters at the time when an executable (control flow components) got executed? For example, It is handy to know the relevant Loop variable value of "For Loop" and "For Each Loop" containers for each iteration.