How to detect duplicate rows in a SQL Server table? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T02:33:01Zhttp://stackoverflow.com/feeds/question/306743http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/306743/how-to-detect-duplicate-rows-in-a-sql-server-table3How to detect duplicate rows in a SQL Server table?Bajji2008-11-20T20:23:49Z2008-11-22T18:16:22Z
<p>What is the most efficient way to detect duplicates in a 10 column / 50K row table? I'm using MSSQL 8.0</p>
http://stackoverflow.com/questions/306743/how-to-detect-duplicate-rows-in-a-sql-server-table/306756#3067566Answer by Guge for How to detect duplicate rows in a SQL Server table?Guge2008-11-20T20:28:13Z2008-11-20T20:28:13Z<p>You can use "group by" on all columns and then count(*)>1</p>
http://stackoverflow.com/questions/306743/how-to-detect-duplicate-rows-in-a-sql-server-table/306789#3067891Answer by Aaron Palmer for How to detect duplicate rows in a SQL Server table?Aaron Palmer2008-11-20T20:39:04Z2008-11-20T20:39:04Z<p>To detect, just group by as Guge said.</p>
<pre><code>select fieldA, fieldB, count(*) from table
group by fieldA, fieldB
having count(*) > 1
</code></pre>
<p>If you want to delete dupes... pseudo.... </p>
<pre><code>select distinct into a temp table
truncate original table
select temp table back into original table
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/306743/how-to-detect-duplicate-rows-in-a-sql-server-table/306798#3067981Answer by Charles Bretana for How to detect duplicate rows in a SQL Server table?Charles Bretana2008-11-20T20:43:19Z2008-11-20T20:43:19Z<p>Try this</p>
<pre><code>Select * From Table
Group By [List all fields in the Table here]
Having Count(*) > 1
</code></pre>
http://stackoverflow.com/questions/306743/how-to-detect-duplicate-rows-in-a-sql-server-table/306803#3068032Answer by knightpfhor for How to detect duplicate rows in a SQL Server table?knightpfhor2008-11-20T20:44:07Z2008-11-20T20:44:07Z<p>To show an example of what others have been describing:</p>
<pre><code>SELECT
Col1, -- All of the columns you want to dedupe on
Col2, -- which is not neccesarily all of the columns
Col3, -- in the table
Col4,
Col5,
Col6,
Col7,
Col8,
Col9,
Col10
FROM
MyTable
GROUP BY
Col1,
Col2,
Col3,
Col4,
Col5,
Col6,
Col7,
Col8,
Col9,
Col10
HAVING
COUNT(*) > 1
</code></pre>
http://stackoverflow.com/questions/306743/how-to-detect-duplicate-rows-in-a-sql-server-table/306972#3069721Answer by Jason Lepack for How to detect duplicate rows in a SQL Server table?Jason Lepack2008-11-20T21:48:17Z2008-11-20T21:48:17Z<p>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. </p>
<p>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.</p>