Customer Portal

Ext Hash Join -CloverETL community Edition

Comments 2

  • Avatar
    admin
    0
    Comment actions Permalink
    Hi bhavinultimate,

    ExtHashJoin works as expected - joins records from 2 (or more) edges by key. In your case it joins together 3 combinations of Table1 and Table2:

    [A abc 1] & [A abc 4] (using key A abc)
    [A ddd 3] & [A ddd 2] (using key A ddd)
    [A hhh 4] & [A hhh 2] (using key A hhh)

    And using transformation let you generate 3 output records.

    If you just need to collect data from Table1 and Table2 to one edge, you can use SimpleGather (http://doc.cloveretl.com/documentation/ ... ather.html) component. In this case it would output 6 records, as you expected.

    I hope this helps.
  • Avatar
    bhavinultimate
    0
    Comment actions Permalink
    Hi Javlin
    Thank a lot

    for your help.

Please sign in to leave a comment.