Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的工作流程中有一个条件拆分任务,它将数据定向到三个不同目的地之一。
我所有的数据都应该发送到这三个目的地之一。如果存在不符合此规则的数据,它应该会导致进程失败(即没有加载任何内容并且给用户一个错误)。
如果将数据发送到其默认输出,SSIS 中是否有任何方法导致条件拆分任务使进程失败?
最简单的方法是在默认输出之后添加一个脚本组件(目标) 。并从脚本组件中抛出异常。例如(VB.NET)
Throw new Exception("Condition are not met!")