Hi everyone,
I have an SSIS project with 3 packages: One is the parent package and the other 2 are child packages.
I want to implement TransactionOption in the package such that if the package fails, it rollback all the transactions in the parent package.
What I did is I set the TransactionOption in the parent package to Required and Supported for each of the child packages.
However, this approach seems to make the child package to hang.
Any idea on how to achieve this
me