I've been trying translate the next ACCESS query into a SSIS data flow:
Insert into A.column1, A.column2..
Select B.column1, B.column2, C.column1, C.column2
from B left join C on B.column3 = C.column3
Group by A.column#
Having B.column# is null
Until now I have created the next data flow
(Excel source and DB source) -> Merge Join -> Data Conversion-> Conditional Split -> DB Destination
But when I try to insert the query in the Merge Join I am having the next message error:
The isSorted Property must be set to True on both sources for this transformation.
So I go to the property window but I do not see nothing like this in the list of properties.
What can I do in order to fix this problem?, or even better, do you know a best way to do this query in SSIS?