在pentaho水壶中反转群组结束

时间:2015-04-14 11:11:03

标签: pentaho kettle normalize

Pentaho Kettle在某些时候我有一些像这样的数据 (它们实际上是复杂的ldap查询的结果)

x            y
foo          apple , banana , pear
bar          potato , carrot , tomato

其中xy是我的表格列,y是纯字符串

我希望规范化表格,将其转换为

x         y
foo       apple
foo       banana
foo       pear
bar       potato
bar       carrot
bar       tomato

有可能这样做吗?也许用javascript步骤?

1 个答案:

答案 0 :(得分:3)

您可以在PDI中使用“拆分字段到行”步骤。将Deliminator用作“”,它会将行拆分为所需的输出。

在这里放置gist。您可以查看代码。