ASP.NET 2.0 Question:
How do you remove duplicates without using remove duplicate stage?

Answer:
In the target make the column as the key column and run the job.
delete table tablename where rowid not in Select * from tablename group by column name
delete table tablename where rowid not in Select * from tablename group by column name