Reputation: 1
I have created a package which has multiple data flow tasks. It also includes BEGIN TRANSACTION as an Execute SQL Task
When package is called by another package, it doesn't finish execution. However, if it is run by hand, it executes successfully.
Here is the screenshot of the package
Upvotes: 0
Views: 344
Reputation: 1
You need to put a local task after calling a child package. In other words, the call package task shouldn't be the last task in the main package.
Upvotes: 0