<?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:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Unleash the Power of Knowledge</title>
	<atom:link href="http://kamaltechworld.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://kamaltechworld.wordpress.com</link>
	<description>Technology Explored for TrainedMinds</description>
	<lastBuildDate>Tue, 03 Jun 2008 06:35:21 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on About by karthikayan,saravana</title>
		<link>http://kamaltechworld.wordpress.com/about-me/#comment-10</link>
		<dc:creator>karthikayan,saravana</dc:creator>
		<pubDate>Tue, 03 Jun 2008 06:35:21 +0000</pubDate>
		<guid isPermaLink="false">#comment-10</guid>
		<description>kamal the great man in the great world</description>
		<content:encoded><![CDATA[<p>kamal the great man in the great world</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle &#8211; Finding Duplicates in a Table &#8211; Part I by mendus</title>
		<link>http://kamaltechworld.wordpress.com/2008/04/23/oracle-finding-duplicates-in-a-table-part-i/#comment-9</link>
		<dc:creator>mendus</dc:creator>
		<pubDate>Thu, 24 Apr 2008 03:18:14 +0000</pubDate>
		<guid isPermaLink="false">http://kamaltechworld.wordpress.com/?p=9#comment-9</guid>
		<description>When large volumes of data needs to be loaded, usually for performance reasons existing constraints 
such as unique, pk and fk cons will be disabled and data load will be performed in direct path using sqlldr.

In this case any violations can be found using following syntax, which includes duplicates as you mentioned in your post 

ALTER TABLE employees ENABLE CONSTRAINT employee_pk EXCEPTIONS INTO exceptions;

Also the other way you can find dups with our using any constaints is as follows

select key_column, count(*)  number_of_dups
from  table_name
group by key_column
having count(*) &gt; 1;

- Mendus
&lt;a href=&#039;http://oracle-error.blogspot.com&#039; rel=&quot;nofollow&quot;&gt;Oracle Error&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>When large volumes of data needs to be loaded, usually for performance reasons existing constraints<br />
such as unique, pk and fk cons will be disabled and data load will be performed in direct path using sqlldr.</p>
<p>In this case any violations can be found using following syntax, which includes duplicates as you mentioned in your post </p>
<p>ALTER TABLE employees ENABLE CONSTRAINT employee_pk EXCEPTIONS INTO exceptions;</p>
<p>Also the other way you can find dups with our using any constaints is as follows</p>
<p>select key_column, count(*)  number_of_dups<br />
from  table_name<br />
group by key_column<br />
having count(*) &gt; 1;</p>
<p>- Mendus<br />
<a href='http://oracle-error.blogspot.com' rel="nofollow">Oracle Error</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
