I have a Merge Join Transform that is doing a Left Outer Join. Can anyone show me the pseudo code for this transform? I think I understand the output, but I’m curious to know the logic that is used to produce it.
Thank you!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The merge join works follows by traversing all the records in two sorted lists. The merge matches the records where it can, but always returns the records from the left list, even without a corresponding record in the right list. As the records are sorted in both lists, the process knows that it can discard the possibility of any matches further down the list;