What is the most efficient way to detect duplicates in a 10 column / 50K row table? I\'m using MSSQL 8.0
Try this
Select * From Table Group By [List all fields in the Table here] Having Count(*) > 1