Click here to Skip to main content
15,887,027 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
Currently working with Dataflow task in ssis having an issue with merge join.

merge join always require sorted property o set true.

then if we want to use multiple merge join then we have use sort tranformation which is fully block so which reduces the performance.

Is there any way to overcome these problem.

Thank in Advance.
Posted

1 solution

The Merge Join transformation provides an output that is generated by joining two sorted datasets using a FULL, LEFT, or INNER join. So if you are using multiple merge join then you have to use sort transformation and of course it will affect performance.

Lookup can sometimes be used in a similar manner to Merge join for data matching.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900