What is the most efficient way to detect duplicates in a 10 column / 50K row table? I\'m using MSSQL 8.0
You can use group by on all columns and then count(*)>1
group by
count(*)>1