Hello,
I have an issue with sequence container using checkpoints. Please comment.
I have a sequence container and on this container I have set "FailPackageOnFailure=true".
Now in this container there are 3 Execute SQL tasks. (Valid SQL Connection Tested)
- The first one is simple Execute SQL Task with "Select 1" and "FailParentOnFailure=true" on the property.
- The second task with "select 1/0" and "FailParentOnFailure=true" (Forcibly failing this task) Creates checkpoint file
- The third task is similar to first with "Select 1"
- I run the package and it fails at step 2, because 1/0.
- I manually corrected 1/0 to 1 in Task 2 and re-run the package
- I see, that the second task is completely ignored and it just runs the third step. Whereas it failed on STEP 2 then it should start from step 2 as per my understanding for ability to start from point of failure.
In general, everytime any task in a sequence container invokes failure, next time is beeing ommited regardelss of its status. How can this be fixed ? Thanks
SQL Killer