I am trying to implement full outer join using tJoin component but I am not getting as expected results. Could anyone help me on this?
Screenshot of tJoin:
I am trying to implement full outer join using tJoin component but I am not getting as expected results. Could anyone help me on this?
Screenshot of tJoin:
In fact Talend does not implement a full join, but you can achieve it by reading your inputs twice, performing a left and a right join for each reading, then unite the two flows using tUnite
and get unique rows by tUniqRow
I think tJoin is for LEFT or INNER joins.
For FULL joins you need to use a tMap.
Regards, TRF