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
The IsSorted property is in the Input and Output Properties tab of the Source Component. You will need to set it to true, and also specify which column the results are sorted on, by selecting that column and setting the SortKeyPosition property to 1. If the results are sorted by more than one column, you do the same for the other columns: The SortKeyPosition is a 1-based list of the order the columns appear in the ORDER BY clause of the SQL that generated your source component.