【发布时间】:2022-02-21 16:22:28
【问题描述】:
我在 Azure 数据工厂中创建了数据流转换
来源:上传到 Azure Blob 中的 Excel 文件 目标:在 Azure Blob 中创建的 JSON 文件
- 我不想将空行从源插入到目标
- 如果特定行没有特定值,那么我想插入前一行的值。
我尝试使用下面的表达式过滤转换以过滤掉所有列都有空值的行,但它无法删除空行
!(isNull(Column_1)) && !(isNull(Column_2)) && !(isNull(Column_3)) && !(isNull(Column_4)) && !(isNull(Column_5)) && !(isNull(Column_6))
【问题讨论】:
标签: azure-data-factory azure-data-flow