Page 1 of 1

Restartable Sequence with Exception handler

Posted: Fri Nov 05, 2010 9:37 am
by harryhome
Here is the scenario,

In a restartable sequence which will on failure sets a checkpoint and in subsequent run starts from that checkpoint.
If we plug a exception handler, then the checkpoint is not saved on failure and in subsequent run the sequence will start from scrach.

I have few jobs which need to be ran on failure of sequence using Exception handler activity and at the same time I need the Sequence to be restartable, any views?

Posted: Fri Nov 05, 2010 10:21 am
by ray.wurlod
You are seeking to have your cake and eat it too. You can have one or the other, but not both. Invoking the Exception Handler causes the sequence to finish successfully, which clears all checkpoints. Use explicit failure triggers instead.