http://stackoverflow.com/questions/697538/ignore-errors-on-execute-package-task-in-ssis
"A better way to do this is to go to the OnError handler of your execute package task and set the
System variable "Propogate" to false. This will stop the error from bubbling upwards to your loop container."
在Event Handlers中找到对应的控件(Executable), 右边选择OnError, 打开Variables窗口, 找到"Propogate", 并将其设置为 false.
补充:
当mdx返回结果有 -1.#IND 时, SSIS会报错
这时要到源控件的 advance editor中配置为"Rd_IgnoreFailure"
本文介绍了如何在SQL Server Integration Services (SSIS)中通过设置"Propagate"变量为false来避免执行包任务时的错误向上冒泡,并提供了解决MDX查询返回-1.#IND导致SSIS错误的方法。
5477

被折叠的 条评论
为什么被折叠?



