Editorial / Best Answer
ghola
The joiner transformation compares each row of the master source against the detail source. Hence, fewer number of rows in master means fewer iterations of join comparison.
Secondly It is easier to cache the table with fewer number of rows.
Hence, using the table having the fewer number of rows as a master improves the performance.
Joiner Transformation Master Detail
Profile Answers by sarun5 Questions by sarun5
Questions by sarun5 answers by sarun5
Editorial / Best Answer
gholaProfile Answers by ghola Questions by ghola
The joiner transformation compares each row of the master source against the detail source. Hence, fewer number of rows in master means fewer iterations of join comparison.
Secondly It is easier to cache the table with fewer number of rows.
Hence, using the table having the fewer number of rows as a master improves the performance.
Related Answered Questions
Related Open Questions