Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

[resolved] FULL OUTER JOIN

hi team,
I went through talend for last three weeks.But ia m not able to find how to implement FULL OUTER JOIN in talend open studio.
Plese any body help me have to implement FULL OUTER JOIN both in open studio and CDC(Change data capture).
That FULL OUTER JOIN technique should work for CDC also.
I implemented FULL OUTER JOIN usinf two LEFT OUTER JOINS.When i run simple job it is working fine.In CDC it is failing.
Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Hello 
No a direct way to implement full outer join on one component, you need to do two left outer joins. For CDC table, try to read data from CDC table and cache them into memory with tHashOutput first, and then read the data from memory back with tHashInput in the next two Left Outer joins. 

View solution in original post

1 Reply
Anonymous
Not applicable
Author

Hello 
No a direct way to implement full outer join on one component, you need to do two left outer joins. For CDC table, try to read data from CDC table and cache them into memory with tHashOutput first, and then read the data from memory back with tHashInput in the next two Left Outer joins.