<?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: SSIS package to Remove Duplicates from any Database</title>
	<atom:link href="http://www.sqllion.com/2010/01/ssis-package-to-remove-duplicates-from-any-database/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sqllion.com/2010/01/ssis-package-to-remove-duplicates-from-any-database/</link>
	<description>Welcome to the Database Jungle</description>
	<lastBuildDate>Mon, 06 Sep 2010 03:21:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mayur</title>
		<link>http://www.sqllion.com/2010/01/ssis-package-to-remove-duplicates-from-any-database/comment-page-1/#comment-533</link>
		<dc:creator>Mayur</dc:creator>
		<pubDate>Mon, 26 Jul 2010 14:00:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.sqllion.com/?p=827#comment-533</guid>
		<description>Beautiful example and explanation!!!
Thanks for the posting.</description>
		<content:encoded><![CDATA[<p>Beautiful example and explanation!!!<br />
Thanks for the posting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jstone923</title>
		<link>http://www.sqllion.com/2010/01/ssis-package-to-remove-duplicates-from-any-database/comment-page-1/#comment-292</link>
		<dc:creator>jstone923</dc:creator>
		<pubDate>Fri, 26 Mar 2010 03:46:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.sqllion.com/?p=827#comment-292</guid>
		<description>What about using the Windowing function (CTE) technique so you don&#039;t have to use a temp table?

WITH tempDupData AS (
SELECT RecID = ROW_NUMBER() OVER (PARTITION BY  ORDER BY ), 
FROM  WITH(NOLOCK))
DELETE FROM tempDupData
WHERE RecID &gt;= 1</description>
		<content:encoded><![CDATA[<p>What about using the Windowing function (CTE) technique so you don&#8217;t have to use a temp table?</p>
<p>WITH tempDupData AS (<br />
SELECT RecID = ROW_NUMBER() OVER (PARTITION BY  ORDER BY ),<br />
FROM  WITH(NOLOCK))<br />
DELETE FROM tempDupData<br />
WHERE RecID &gt;= 1</p>
]]></content:encoded>
	</item>
</channel>
</rss>
