 




<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: SQL find duplicates SQL Server 2008</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/sql-find-duplicates/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-find-duplicates/</link>
	<description></description>
	<lastBuildDate>Wed, 22 May 2013 02:14:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: dugi</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-find-duplicates/#comment-75057</link>
		<dc:creator>dugi</dc:creator>
		<pubDate>Mon, 22 Mar 2010 12:44:44 +0000</pubDate>
		<guid isPermaLink="false">#comment-75057</guid>
		<description><![CDATA[You can find the duplicates also in this way in SQL Server 2008;

&lt;pre&gt;WITH DUPLO
AS
(SELECT ROW_NUMBER() OVER (PARTITION BY YOUR_COLUMN_WITH_DOUBLE_VALUE ORDER BY YOUR_COLUMN_WITH_DOUBLE_VALUE) AS DUPLOID, * FROM YOURTABLE)

SELECT * FROM DUPLO
WHERE DUPLOID &lt;&gt; 1&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>You can find the duplicates also in this way in SQL Server 2008;</p>
<pre>WITH DUPLO
AS
(SELECT ROW_NUMBER() OVER (PARTITION BY YOUR_COLUMN_WITH_DOUBLE_VALUE ORDER BY YOUR_COLUMN_WITH_DOUBLE_VALUE) AS DUPLOID, * FROM YOURTABLE)

SELECT * FROM DUPLO
WHERE DUPLOID &lt;&gt; 1</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: meandyou</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-find-duplicates/#comment-74873</link>
		<dc:creator>meandyou</dc:creator>
		<pubDate>Mon, 15 Mar 2010 19:09:16 +0000</pubDate>
		<guid isPermaLink="false">#comment-74873</guid>
		<description><![CDATA[Define a unique index  (or however your RDBMS supports a unique constraint) on a column or set of columns and avoid &quot;duplicates&quot;]]></description>
		<content:encoded><![CDATA[<p>Define a unique index  (or however your RDBMS supports a unique constraint) on a column or set of columns and avoid &#8220;duplicates&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-find-duplicates/#comment-74855</link>
		<dc:creator>carlosdl</dc:creator>
		<pubDate>Mon, 15 Mar 2010 13:50:36 +0000</pubDate>
		<guid isPermaLink="false">#comment-74855</guid>
		<description><![CDATA[Remember that you can use the &#039;search&#039; feature of the site.

This is another question you might want to take a look at:

&lt;a href=&quot;http://itknowledgeexchange.techtarget.com/itanswers/fastest-get-duplicates-sql/&quot;&gt;Fastest &quot;get duplicates&quot; SQL&lt;/a&gt;]]></description>
		<content:encoded><![CDATA[<p>Remember that you can use the &#8216;search&#8217; feature of the site.</p>
<p>This is another question you might want to take a look at:</p>
<p><a href="http://itknowledgeexchange.techtarget.com/itanswers/fastest-get-duplicates-sql/">Fastest &#8220;get duplicates&#8221; SQL</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/10 queries in 0.042 seconds using memcached
Object Caching 295/301 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-22 03:32:10 -->