标签:
Checkpoints are the foundation for restarting packages in SSIS, and they work by writing state information to a ?le after each task completes. This ?le can then be used to determine which tasks have run and which have failed.
To ensure that the checkpoint ?le is created correctly, you must set 3 package properties and one task property:
CheckpointFilename: This is the ? lename of the checkpoint ? le
CheckpointUsage: 3 options
SaveCheckpoints: This is a simple Boolean to indicate whether checkpoints are to be written.
The one property you have to set on the task is FailPackageOnFailure. This must be set for each task or container that you want to be the point for a checkpoint and restart. If you do not set this property to true and the task fails, no ? le will be written, and the next time you invoke the package, it will start from the beginning again.
Checkpoints occur only at the Control Flow
If you want a checkpoint ? le to be written, then make sure that the restart point has FailPackageOnFailure set to true.
SSIS ->> Package Restartability Fullfilled By Checkoints
标签:
原文地址:http://www.cnblogs.com/jenrrychen/p/4739219.html