I have a SSIS package. I have set several Handlers for different behaviors for the tasks.
My question is: One task in particular, if it fails, I want it to skip a few other tasks and jump ahead.
So, I’d like to set the OnError for that particular task so it jumps to some other task.
How can I say the SSIS, inside the handler, to move ahead to a specific task?
I want to jump to another task in the control flow.
you cant say that to SSIS, you must implement it with precedence constraints.
Example: lets say you have tasks A -> B -> C -> D and you don’t want C to execute if B fails, you can do this:
be aware the dotted lines, you need to set the precedence to OR otherwise D would only execute if B both succeeds and fail, which is not possible