I need to load 2 database tables from a single csv file containing mixed data. I also want to maintain parent child relations using foreign key relation.
Below is example of input csv file,
<name>,<title>,<department>,<location>
John,Developer,IT, Florida
Mike,Designer,Sales,Nevada
Chris,Designer,Sales,Nevada
And below are 2 table structures. Employee table has dept_id as foreign key. Department table will have unique names(no repetitions). According to above sample csv, it should have 2 entries(IT, Sales).
DEPARTMENT
-------------
id
name
location
EMPLOYEE
---------
id
name
title
dept_id
I am a completely new to using Kettle and any pointers would be appreciated.