<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Query to delete duplicate Records in SQL Server 2005</title>
	<atom:link href="http://dayananthan.wordpress.com/2008/07/03/query-to-delete-duplicate-records-in-sql-server-2005/feed/" rel="self" type="application/rss+xml" />
	<link>http://dayananthan.wordpress.com/2008/07/03/query-to-delete-duplicate-records-in-sql-server-2005/</link>
	<description>Make New Ideas That Make Your Work Interesting</description>
	<lastBuildDate>Thu, 26 Nov 2009 05:18:03 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: ramesh</title>
		<link>http://dayananthan.wordpress.com/2008/07/03/query-to-delete-duplicate-records-in-sql-server-2005/#comment-94</link>
		<dc:creator>ramesh</dc:creator>
		<pubDate>Thu, 20 Aug 2009 09:08:02 +0000</pubDate>
		<guid isPermaLink="false">http://dayananthan.wordpress.com/?p=18#comment-94</guid>
		<description>very nice post.your solution solve my problem.</description>
		<content:encoded><![CDATA[<p>very nice post.your solution solve my problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: webtips</title>
		<link>http://dayananthan.wordpress.com/2008/07/03/query-to-delete-duplicate-records-in-sql-server-2005/#comment-77</link>
		<dc:creator>webtips</dc:creator>
		<pubDate>Tue, 10 Mar 2009 03:58:09 +0000</pubDate>
		<guid isPermaLink="false">http://dayananthan.wordpress.com/?p=18#comment-77</guid>
		<description>good one...

I find two other method to solve the issue.

&lt;a href=&quot;http://www.webtips.co.in/sql-server/delete-duplicate-rows-on-table-with-without-primary-key-in-sql-server-2005.aspx&quot; rel=&quot;nofollow&quot;&gt;Delete Duplicate records in SQL Server&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>good one&#8230;</p>
<p>I find two other method to solve the issue.</p>
<p><a href="http://www.webtips.co.in/sql-server/delete-duplicate-rows-on-table-with-without-primary-key-in-sql-server-2005.aspx" rel="nofollow">Delete Duplicate records in SQL Server</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Govind</title>
		<link>http://dayananthan.wordpress.com/2008/07/03/query-to-delete-duplicate-records-in-sql-server-2005/#comment-74</link>
		<dc:creator>Govind</dc:creator>
		<pubDate>Wed, 11 Feb 2009 21:22:30 +0000</pubDate>
		<guid isPermaLink="false">http://dayananthan.wordpress.com/?p=18#comment-74</guid>
		<description>WITH Emp AS (SELECT ROW_NUMBER ( ) OVER ( PARTITION BY EmpID, EmpName ORDER BY EmpID ) AS RNUM FROM #Test )
DELETE FROM Emp WHERE RNUM &gt; 1

can u explain it in detail.
i couldn&#039;t undrestand
Thanks</description>
		<content:encoded><![CDATA[<p>WITH Emp AS (SELECT ROW_NUMBER ( ) OVER ( PARTITION BY EmpID, EmpName ORDER BY EmpID ) AS RNUM FROM #Test )<br />
DELETE FROM Emp WHERE RNUM &gt; 1</p>
<p>can u explain it in detail.<br />
i couldn&#8217;t undrestand<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: harinath clavib</title>
		<link>http://dayananthan.wordpress.com/2008/07/03/query-to-delete-duplicate-records-in-sql-server-2005/#comment-72</link>
		<dc:creator>harinath clavib</dc:creator>
		<pubDate>Fri, 02 Jan 2009 20:54:35 +0000</pubDate>
		<guid isPermaLink="false">http://dayananthan.wordpress.com/?p=18#comment-72</guid>
		<description>the query working well but need to understand i appreciate if could you explain about given query to delete the duplicate records.

Thank you</description>
		<content:encoded><![CDATA[<p>the query working well but need to understand i appreciate if could you explain about given query to delete the duplicate records.</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rakis</title>
		<link>http://dayananthan.wordpress.com/2008/07/03/query-to-delete-duplicate-records-in-sql-server-2005/#comment-71</link>
		<dc:creator>Rakis</dc:creator>
		<pubDate>Wed, 19 Nov 2008 10:07:12 +0000</pubDate>
		<guid isPermaLink="false">http://dayananthan.wordpress.com/?p=18#comment-71</guid>
		<description>Good One 
Thanks!!!!!!!!</description>
		<content:encoded><![CDATA[<p>Good One<br />
Thanks!!!!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chandra mohan</title>
		<link>http://dayananthan.wordpress.com/2008/07/03/query-to-delete-duplicate-records-in-sql-server-2005/#comment-63</link>
		<dc:creator>chandra mohan</dc:creator>
		<pubDate>Thu, 04 Sep 2008 11:47:23 +0000</pubDate>
		<guid isPermaLink="false">http://dayananthan.wordpress.com/?p=18#comment-63</guid>
		<description>thanks your answer is right
but that is so complex
good luck</description>
		<content:encoded><![CDATA[<p>thanks your answer is right<br />
but that is so complex<br />
good luck</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dayananthan</title>
		<link>http://dayananthan.wordpress.com/2008/07/03/query-to-delete-duplicate-records-in-sql-server-2005/#comment-54</link>
		<dc:creator>dayananthan</dc:creator>
		<pubDate>Fri, 18 Jul 2008 05:42:57 +0000</pubDate>
		<guid isPermaLink="false">http://dayananthan.wordpress.com/?p=18#comment-54</guid>
		<description>Please provide one example as what exactly you want</description>
		<content:encoded><![CDATA[<p>Please provide one example as what exactly you want</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vinodh</title>
		<link>http://dayananthan.wordpress.com/2008/07/03/query-to-delete-duplicate-records-in-sql-server-2005/#comment-53</link>
		<dc:creator>Vinodh</dc:creator>
		<pubDate>Thu, 17 Jul 2008 11:31:08 +0000</pubDate>
		<guid isPermaLink="false">http://dayananthan.wordpress.com/?p=18#comment-53</guid>
		<description>If the records,then this query will help us.
if there two different records having duplicates.Then, how to remove the duplicates of these two records.</description>
		<content:encoded><![CDATA[<p>If the records,then this query will help us.<br />
if there two different records having duplicates.Then, how to remove the duplicates of these two records.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
