0

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:

Screen shot of tjoin

tobi6
  • 8,033
  • 6
  • 26
  • 41
Naresh AR
  • 69
  • 2
  • 12

2 Answers2

1

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

54l3d
  • 3,913
  • 4
  • 32
  • 58
0

I think tJoin is for LEFT or INNER joins.
For FULL joins you need to use a tMap.

Regards, TRF

TRF
  • 791
  • 4
  • 9