I am trying to use Pentaho Keetle to do some data migration. I would like to create a transformation to accomplish the following:
I have the following tables in the source:
table 1
id [PK]
name
table 2
id [PK]
source_id [FK with table 1.id]
state
I have the same structures in the destination server. Let's say i would like to migrate 10 rows from table 1 along with their relations from table 2 in the destination server.
How would i do that with a Keetle transformation?
Thanks