I loaded one table via SSIS and found that it contained many duplicate records (from the input source). I can create a SQL task to delete them, but I wonder if SSIS offers and task "out of the box" to delete dups?
TAI,
barkingdog
I don't know about anything in SSIS to do so but here's a great way to do it using CTE's and Row_Number()
http://www.sqlservercentral.com/columnists/chawkins/dedupingdatainsqlserver2005.asp
|||Use a Sort transform from SSIS is a possible alternation - Sort on certain keys and check "remove duplicate records" at Sort transform.
hth
wenyang
No comments:
Post a Comment