What is the most efficient way to detect duplicates in a 10 column / 50K row table? I'm using MSSQL 8.0
|
1
|
|
|
|
|
|
To show an example of what others have been describing:
|
|||
|
|
|
In addition to the suggestions provided, I would then go to the effort of preventing duplicates in the future, rather than trying to locate them later. This is done using unique indexes on columns (or groups of columns) that are supposed to be unique. Remember that data in the database can be modified from other locations other than through the specific app that you are working on, so it's best to define what is and isn't allowed in a table at the DB level. |
|||
|
|
|
|
Try this
|
|||
|
|
|
|
To detect, just group by as Guge said.
If you want to delete dupes... pseudo....
With truncate you may run into problems if you have FK constraints, so be smart about dropping constraints and making sure you don't orphan records. |
|||
|
|
|
|
You can use "group by" on all columns and then count(*)>1 |
|||
|
