Harsh Singhi
Harsh Singhi

Reputation: 117

Check for duplicate rows while transferring data from text file to excel

Platform : SSIS

I am new to SSIS and trying to check for duplicate rows while transferring the data from text file to excel file. Heard about cache transform can be used but I am not really sure about it. Any suggestions?

Upvotes: 0

Views: 104

Answers (1)

R. Richards
R. Richards

Reputation: 25161

One simple way to handle this is use an Aggregate transform between the source and destination. In it, group by all the columns in the source to eliminate duplicates. I have used this technique, and it works well.

This could be slow if the source is large.

Upvotes: 2

Related Questions