【发布时间】:2017-07-27 21:37:13
【问题描述】:
我正在使用 Pentaho 的 Kettle/Spoon 加载客户。我不知道如何在完成后将 2 个或多个转换连接在一起
Source
/ | \
A | B
\ | /
Insert Data
(Database Alpha)
Source Data
ID, Name, SSN, Email, CanCall, EmailStatus
(Database Beta)
A) Inserts the email status table if it doesn't exist then returns the ID
B) Inserts the PII table if it doesn't exist then returns the ID
Insert Data
EmailStatusTable
1, can_email
2, can_not_email
PII Table
1, "Johnson, John", "todays_date"
2, "Jackson, Jillian", "todays_date"
CustomerTable
1, 1 (PII Table ID), "jjohnson@blah.com", true (can call), 1 (email status table ID)
2, 2 (PII Table ID), "jill_jack@home.com", false (can call), 2 (email status table ID)
我不知道如何使“插入数据”部分起作用。请帮忙。
【问题讨论】:
标签: pentaho kettle pentaho-spoon