Customer Portal

Approximative Join Error Issue

Comments 1

  • Avatar
    dpavlis
    0
    Comment actions Permalink
    Approximative Join is meant for joining records from two ports based on similarity of the keys - not exact match. It uses edit-distance to calculate how similar two keys are and if result/similarity is within set boundary it calls it a match and outputs them. It can work also on numbers, but it treats individual digits.
    Usage example of this join may be joining two sets of records based on person's name and phone number, where you may have some typos or variations.

    Based on what you described - joining sets on exact match of keys - use MergeJoin, HashJoin or DataIntersection.

    You may also watch Clover's video tutorial on joining.

    David.

Please sign in to leave a comment.