SQL Server Integration Service Left Join

后端 未结 1 1060
一向
一向 2021-01-28 14:07

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         


        
1条回答
  •  醉话见心
    2021-01-28 14:41

    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.

    0 讨论(0)
提交回复
热议问题