Hi,
I have an SSIS package with three independent dataflow tasks. Each are linked by a 'completion' condition. So even if one of the tasks fail, execution will continue to the next. And errors are handled for the three tasks ( on error, writing it to a log file). We are using an external program to monitor this package. This program will send the log file as an e-mail to the support if an error occurs during the execution of the package (if any of the dataflow tasks fail). But the problem is that the package always completes successfully as the errors are handled and the execution does not stop on the failure of execution of one task. Is there a way that we can return a package failure at the end of the execution,if any of the tasks fail (though the others succeed).
Thanks