I am trying to do a SSIS sort operation on 3 columns with remove the duplicates option check in dataflow.

But the output of the sort is still giving the duplicate records in the 3 columns.

Am I missing anything or is there any known issue on removing the duplicates using the sort component in SSIS 2008 or actually is it recomendable to use the SSIS sort to remove the duplicates other than the performance.

thanks

prav

link|improve this question

79% accept rate
feedback

2 Answers

up vote 0 down vote accepted

What value types are you sorting on? MSDN mentions that string comparison operations may cause "duplicates" depending on how they're set in the sort transform.

link|improve this answer
column 1 is string like '7448-001-112', column 2 is datetime and column 3 is also datetime. – prav Mar 2 '11 at 11:47
feedback

Are you still passing through all of your other columns? If you have more than the 3 columns you're trying to remove duplicates from exiting your Sort Transformation its possible those records are causing your duplicates to not be removed. To remove duplicates you need to only pass those columns through the sort with the remove dup's option checked.

link|improve this answer
I have more than 10 columns in the SORT but I am using 3 columns to sort order with remove duplicates and remaining 7 columns as pass through the SORT. – prav Mar 2 '11 at 21:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.