我正在使用Pentaho的Kettle / Spoon来装载顾客。我无法弄清楚如何在完成后将两个或更多个转换连接在一起
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)
我无法弄清楚如何使“插入数据”部分工作。请帮助。