Reputation: 1595
I have to do a job with Talend, but I'm a beginner and the software is very complex, I'm a bit lost.
My current problem is to join multiple tSplitRow
into one output excel file.
I don't know if I must use tMap
? How to configure it? Or if another object exist to do that.
Each tSplitRow
has the same structure: LastName,FirstName,Course,Grade
.
My current structure
Thank's for help.
Upvotes: 0
Views: 131
Reputation: 4051
Since your components have the same structure, you can use tUnite
to do a union of your rows. It takes multiple input links, and has a single output.
Upvotes: 1