Saturday, 3 November 2012

How to Remove Duplicate Rows but Log the Duplicates in SSIS

Create table D
( A int,B int)

Insert D values  (1,23)
Select * from D

A    B
1    23
1    23
16    59
12    12
13    45
12    12
45    56






No comments:

Post a Comment