<?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: Remove duplicate rows with Oracle SQL ROW_NUMBER &#8211; intelligent and efficient data cleansing</title>
	<atom:link href="http://technology.amis.nl/2011/08/02/remove-duplicate-rows-with-oracle-sql-row_number-intelligent-and-efficient-data-cleansing/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2011/08/02/remove-duplicate-rows-with-oracle-sql-row_number-intelligent-and-efficient-data-cleansing/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=remove-duplicate-rows-with-oracle-sql-row_number-intelligent-and-efficient-data-cleansing</link>
	<description></description>
	<lastBuildDate>Fri, 12 Apr 2013 10:04:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Martin Schapendonk</title>
		<link>http://technology.amis.nl/2011/08/02/remove-duplicate-rows-with-oracle-sql-row_number-intelligent-and-efficient-data-cleansing/#comment-6848</link>
		<dc:creator>Martin Schapendonk</dc:creator>
		<pubDate>Wed, 03 Aug 2011 14:45:55 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=13116#comment-6848</guid>
		<description><![CDATA[Alternative without analytic functions:
delete from medal_score
where rowid in (
 select rowid
 from medal_score t
 where exists (
 select 1
 from medal_score
 where oly_id = t.oly_id
 and cty_id = t.cty_id
 and medal = t.medal
 and rowid &gt; t.rowid
 )
);
Â 
Â ]]></description>
		<content:encoded><![CDATA[<p>Alternative without analytic functions:<br />
delete from medal_score<br />
where rowid in (<br />
 select rowid<br />
 from medal_score t<br />
 where exists (<br />
 select 1<br />
 from medal_score<br />
 where oly_id = t.oly_id<br />
 and cty_id = t.cty_id<br />
 and medal = t.medal<br />
 and rowid &gt; t.rowid<br />
 )<br />
);<br />
Â <br />
Â </p>
]]></content:encoded>
	</item>
</channel>
</rss>
