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 中的派生列
X= (A-(C-D)*100)/(c-D)
但是当我执行包时它给了我这个错误
Division by zero occurred in the expression
如何解决这个问题?
提前致谢 !
您是否考虑过使用 ISNULL IFF 表达式?那应该工作得很好。
我解决了它,我只需要将除数上的过滤器设置为非空值。瞧,就可以了!谢谢