vote up 19 vote down star
14

What is the best way to remove duplicate rows from a fairly large table (i.e. 300,000+ rows)?

The rows of course will not be perfect duplicates because of the existence of the RowID identity field.

MyTable
-----------
RowID int not null identity(1,1) primary key,
Col1 varchar(20) not null,
Col2 varchar(2048) not null,
Col3 tinyint not null
flag

48% accept rate

13 Answers

vote up 37 vote down check

Assuming no nulls, you GROUP BY the unique columns, and SELECT the MIN (or MAX) RowId as the row to keep. Then, just delete everything that didn't have a row id:

DELETE MyTable 
FROM MyTable
LEFT OUTER JOIN (
   SELECT MIN(RowId) as RowId, Col1, Col2, Col3 
   FROM MyTable 
   GROUP BY Col1, Col2, Col3
) as KeepRows ON
   MyTable.RowId = KeepRows.RowId
WHERE
   KeepRows.RowId IS NULL
link|flag
A fantastically clear solution. – Chris Jul 14 at 22:35
vote up 7 vote down

There's a good article on removing duplicates on the Microsoft Support site. It's pretty conservative - they have you do everything in separate steps - but it should work well against large tables.

I've used self-joins to do this in the past, although it could probably be prettied up with a HAVING clause:

delete from dupes
from MyTable dupes, MyTable fullTable
where dupes.dupField = fullTable.dupField 
  and dupes.secondDupField  = fullTable.secondDupField 
  and dupes.uniqueField > fullTable.uniqueField
link|flag
vote up 0 vote down

Create a new temporary table. For each row in the old table, check if it exists in the temp table, if it doesn't insert it, if it exists, then move to the next row.

Once done, drop the original, and rename the temp.

link|flag
vote up -1 vote down

select distinct col1, col2, col3 from mytable.

Do not include the RowId column in your select

link|flag
vote up 1 vote down

Here is another good article on removing duplicates.

It discusses why its hard: "SQL is based on relational algebra, and duplicates cannot occur in relational algebra, because duplicates are not allowed in a set."

The temp table solution, and two mysql examples.

In the future are you going to prevent it at a database level, or from an application perspective. I would suggest the database level because your database should be responsible for maintaining referential integrity, developers just will cause problems ;)

link|flag
vote up 0 vote down

@Craig

In the future are you going to prevent it at a database level, or from an application perspective

From the application level (unfortunately). I agree that the proper way to prevent duplication is at the database level through the use of a unique index, but in SQL Server 2005, an index is allowed to be only 900 bytes, and my varchar(2048) field blows that away.

link|flag
What about unique constraint? Is it crippled in the same way? – Constantin Sep 30 '08 at 19:48
vote up 0 vote down

@nmiranda:

The question was how to delete duplicates from the table, not how to query them.

I believe the original poster wants advice on how to clean up a table.

The correct way to do this:

  1. Create a temporary table.
  2. Create a cursor.
  3. SELECT DISTINCT col1,col2,col3 FROM ORGINAL_TABLE -- No RowID
  4. Using the cursor, insert each row from the this result set into the temp table.
  5. Drop the original table
  6. Rename the temp table.

The main problem with this approach is that if your primary keys were autogenerated, they will get trashed.

link|flag
vote up 1 vote down

@me.yahoo.com/brackett

Thanks for the solution - I implemented it and it works great. Deleted 294,378 duplicate rows in 6 seconds.

link|flag
vote up 0 vote down

Oh sure. Use a temp table. If you want a single, not-very-performant statement that "works" you can go with:

DELETE FROM MyTable WHERE NOT RowID IN
    (SELECT 
        (SELECT TOP 1 RowID FROM MyTable mt2 WHERE mt2.Col1 = mt.Col1 AND mt2.Col2 = mt.Col2 AND mt2.Col3 = mt.Col3) 
    FROM MyTable mt)

Basically, for each row in the table, the sub-select finds the top RowID of all rows that are exactly like the row under consideration. So you end up with a list of RowIDs that represent the "original" non-duplicated rows.

link|flag
vote up 0 vote down

From the application level (unfortunately). I agree that the proper way to prevent duplication is at the database level through the use of a unique index, but in SQL Server 2005, an index is allowed to be only 900 bytes, and my varchar(2048) field blows that away.

I dunno how well it would perform, but I think you could write a trigger to enforce this, even if you couldn't do it directly with an index. Something like:

-- given a table stories(story_id int not null primary key, story varchar(max) not null)
create trigger prevent_plagiarism on stories
after insert, update
as
declare @cnt as int
select @cnt = count(*) from stories inner join inserted on (stories.story = inserted.story and stories.story_id != inserted.story_id)
if @cnt > 0
begin
    raiserror('plagiarism detected', 16, 1)
rollback transaction
end

Also, varchar(2048) sounds fishy to me (some things in life are 2048 bytes, but it's pretty uncommon); should it really not be varchar(max)?

link|flag
vote up 0 vote down
delete from my_dummy_table
where (pk_field1,pk_field2) in(
select 
  t.pk_field1
 ,t.pk_field2
from
  my_dummy_table t
 ,(
  select
    t1.pk_field1
   ,t1.pk_field2
  from
    my_dummy_table t1
   ,my_dummy_table t2
  where 1=1
    and (
         t1.pk_field1 <> t2.pk_field1
         or
         t1.pk_field2 <> t2.pk_field2
         ) 
    and t1.dup_field1 = t2.dup_field1
    and t1.dup_field2 = t2.dup_field2
  ) duplicates
where t.pk_field1 = duplicates.pk_field1
  and t.pk_field2 = duplicates.pk_field2
  and t.pk_field1||'-'||t.pk_field2 not in(
                                          select
                                            min(t1.pk_field1||'-'||t1.pk_field2) as keep_this_one
                                          from
                                            my_dummy_table t1
                                           ,my_dummy_table t2
                                          where 1=1
                                            and (
                                                 t1.pk_field1 <> t2.pk_field1
                                                 or
                                                 t1.pk_field2 <> t2.pk_field2
                                                 ) 
                                            and t1.dup_field1 = t2.dup_field1
                                            and t1.dup_field2 = t2.dup_field2
                                          group by
                                            t1.dup_field1
                                           ,t1.dup_field2
                                          )
)
link|flag
vote up 0 vote down
  1. Create new blank table with the same structure

  2. Execute query like this

    INSERT INTO tc_category1 SELECT * FROM tc_category GROUP BY category_id, application_id HAVING count(*) > 1

  3. Then execute this query

    INSERT INTO tc_category1 SELECT * FROM tc_category GROUP BY category_id, application_id HAVING count(*) = 1

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.