I have a file system task in an SSIS control flow. If it fails, it should not fail the package.
I can force a success on the task itself, and disableEventHander, but how can I get the whole package to return 0 (value of success)?
I have a file system task in an SSIS control flow. If it fails, it should not fail the package.
I can force a success on the task itself, and disableEventHander, but how can I get the whole package to return 0 (value of success)?
You can set ForceExecutionValue to True on the package itself and set the ForceExecutionResult to Success if you want to ALWAYS return a success, or alternatively you can set the MaximumErrorCount higher than the number of errors you have if you want to return success only when a certain number of failures happens.