Search this blog

Friday, June 18, 2010

SSIS: How to setup a checkpoint file in SSIS?

The following items need to be configured on the properties tab for SSIS package:


CheckpointFileName - Specify the full path to the Checkpoint file that the package uses to save the value of package variables and log completed tasks. Rather than using a hard-coded path as shown above, it's a good idea to use an expression that concatenates a path defined in a package variable and the package name.


CheckpointUsage - Determines if/how checkpoints are used. Choose from these options: Never (default), IfExists, or Always. Never indicates that you are not using Checkpoints. IfExists is the typical setting and implements the restart at the point of failure behavior. If a Checkpoint file is found it is used to restore package variable values and restart at the point of failure. If a Checkpoint file is not found the package starts execution with the first task. The Always choice raises an error if the Checkpoint file does not exist.


SaveCheckpoints - Choose from these options: True or False (default). You must select True to implement the Checkpoint behavior.

SSIS Interview Questions And Answers

No comments:

Post a Comment