I am currently working on a package that takes 3 source fields and does a fuzzy lookup to on all three fields to determine if a match can be found. The flow is a follows:
Assume there are 3 fields Field A, Field B, Field C
First take field A and Field B and do a fuzzy lookup using those fields and bring back a max of 3 Matches.
Along with the matches I return 1 other field , Field D.
I then need to use Field C and do a fuzzy lookup on Field D with the 3 Matches returned from the first lookup.
How can I implement this in SSIS?