Pentaho:Kettle/Spoon:插入后合并多个数据

Pentaho: Kettle/Spoon: Combining multiple data after inserts

我正在使用 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)

我不知道如何使 "Insert Data" 部分起作用。请帮忙

您可以通过在转换中设置变量来使用标志,并使用这些标志值在客户中插入数据 table。正如您所提到的,您必须 return ID,此处 return ID 意味着您必须将该变量设置为转换内的结果或标志。要求很简单。如果您需要进一步的帮助,请回复。

Combination lookup/update

步骤将很容易解决您的问题