Reputation: 632
Can some one explain me what is use of Force execution Results in ssis Package Properties.I have not used this property even once.
Upvotes: 0
Views: 5837
Reputation: 20955
It's mostly used to fake the results of a task or container and tell SSIS / the execution engine / caller what the status is, instead of the actual status of a task or container execution.
See Faking success in SSIS for a clear detailed explanation.
Also from SQL Server Books On Line.
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 tasks and containers will be rerun.
Upvotes: 4