Visual Basic (Declaration)
Public Property ForceExecutionResult As DTSForcedExecResult
public DTSForcedExecResult ForceExecutionResult { get; set; }
public:
property DTSForcedExecResult ForceExecutionResult {
DTSForcedExecResult get ();
void set (DTSForcedExecResult value);
}
/** @property */
public DTSForcedExecResult get_ForceExecutionResult ()
/** @property */
public void set_ForceExecutionResult (DTSForcedExecResult value)
public function get ForceExecutionResult () : DTSForcedExecResult
public function set ForceExecutionResult (value : DTSForcedExecResult)
Property Value
A
DTSForcedExecResult enumeration that indicates the success or failure of the package or container. The default value of this property is
None, which indicates that the container does not force its execution outcome.
You can use the
ForceExecutionResult property on a task or container to test the use of checkpoints in a package. By setting
ForceExecutionResult of the task or container to
Failure, you can imitate real-time failure. When you rerun the package, failed task and containers will be rerun. For more information, see
Using Checkpoints in Packages.