<?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: Drop parent partition</title>
	<atom:link href="http://jonathanlewis.wordpress.com/2006/12/10/drop-parent-partition/feed/" rel="self" type="application/rss+xml" />
	<link>http://jonathanlewis.wordpress.com/2006/12/10/drop-parent-partition/</link>
	<description>Just another Oracle weblog</description>
	<lastBuildDate>Fri, 24 May 2013 13:27:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: bala</title>
		<link>http://jonathanlewis.wordpress.com/2006/12/10/drop-parent-partition/#comment-41002</link>
		<dc:creator><![CDATA[bala]]></dc:creator>
		<pubDate>Fri, 15 Jul 2011 20:14:59 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/2006/12/10/drop-parent-partition/#comment-41002</guid>
		<description><![CDATA[still not working this way.  including 11g also not working... please exapalin how.]]></description>
		<content:encoded><![CDATA[<p>still not working this way.  including 11g also not working&#8230; please exapalin how.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oracle Business Intelligence and Extraction, Transformation, Loading(ETL) Part 2 &#171; H.Tonguç Yılmaz &#8211; Oracle Blog</title>
		<link>http://jonathanlewis.wordpress.com/2006/12/10/drop-parent-partition/#comment-33758</link>
		<dc:creator><![CDATA[Oracle Business Intelligence and Extraction, Transformation, Loading(ETL) Part 2 &#171; H.Tonguç Yılmaz &#8211; Oracle Blog]]></dc:creator>
		<pubDate>Thu, 02 Jul 2009 13:24:34 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/2006/12/10/drop-parent-partition/#comment-33758</guid>
		<description><![CDATA[[...] Administrator&#8217;s Guide 10g Release 2 (10.2) Chapter 17 Managing Partitioned Tables and Indexes Drop parent partition post by Jonathan Lewis Effective Oracle by Design by Thomas Kyte Chapter 3-Architectural Decisions, Page 185    Comments [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Administrator&#8217;s Guide 10g Release 2 (10.2) Chapter 17 Managing Partitioned Tables and Indexes Drop parent partition post by Jonathan Lewis Effective Oracle by Design by Thomas Kyte Chapter 3-Architectural Decisions, Page 185    Comments [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mette</title>
		<link>http://jonathanlewis.wordpress.com/2006/12/10/drop-parent-partition/#comment-30966</link>
		<dc:creator><![CDATA[Mette]]></dc:creator>
		<pubDate>Tue, 06 May 2008 13:38:21 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/2006/12/10/drop-parent-partition/#comment-30966</guid>
		<description><![CDATA[I&#039;m on 9.2.0.8 - and I simply cant make it work.  It always leaves me with the index on both master and detail to be rebuilt.

And then I cant &quot;use&quot; the table while I do the operation anyway.

This table is a 24-7 logging table. Is there a way to drop a partition (master &amp; detail) in flight?

Best regards and thanks for an informative website
Mette]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m on 9.2.0.8 &#8211; and I simply cant make it work.  It always leaves me with the index on both master and detail to be rebuilt.</p>
<p>And then I cant &#8220;use&#8221; the table while I do the operation anyway.</p>
<p>This table is a 24-7 logging table. Is there a way to drop a partition (master &amp; detail) in flight?</p>
<p>Best regards and thanks for an informative website<br />
Mette</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Musch</title>
		<link>http://jonathanlewis.wordpress.com/2006/12/10/drop-parent-partition/#comment-10073</link>
		<dc:creator><![CDATA[Adam Musch]]></dc:creator>
		<pubDate>Tue, 29 May 2007 15:42:05 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/2006/12/10/drop-parent-partition/#comment-10073</guid>
		<description><![CDATA[As of 10g release 2, it is no longer necessary to create either local partitions or primary keys on the &quot;clone&quot; table.

Your example above can be simplified to:

create table parent_clone as select * from parent where 1 = 0;

alter table parent
exchange partition p2000 with table parent_clone
update indexes;

alter table parent drop partition p2000;

If you have global indexes, they must be maintained.  If you have local indexes, you&#039;d have to manually define each on the clone table to avoid an ORA-14098: index mismatch for tables in ALTER TABLE EXCHANGE PARTITION]]></description>
		<content:encoded><![CDATA[<p>As of 10g release 2, it is no longer necessary to create either local partitions or primary keys on the &#8220;clone&#8221; table.</p>
<p>Your example above can be simplified to:</p>
<p>create table parent_clone as select * from parent where 1 = 0;</p>
<p>alter table parent<br />
exchange partition p2000 with table parent_clone<br />
update indexes;</p>
<p>alter table parent drop partition p2000;</p>
<p>If you have global indexes, they must be maintained.  If you have local indexes, you&#8217;d have to manually define each on the clone table to avoid an ORA-14098: index mismatch for tables in ALTER TABLE EXCHANGE PARTITION</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mohamed Houri</title>
		<link>http://jonathanlewis.wordpress.com/2006/12/10/drop-parent-partition/#comment-538</link>
		<dc:creator><![CDATA[Mohamed Houri]]></dc:creator>
		<pubDate>Sun, 17 Dec 2006 10:33:45 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/2006/12/10/drop-parent-partition/#comment-538</guid>
		<description><![CDATA[Dear Jonathan,

Following your advise more than two years ago, I&#039;ve succeeded to exchange partitions with referentiel integrity. See (ask tom) 

http://govt.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:728425384831#60451928328887

Best Regards]]></description>
		<content:encoded><![CDATA[<p>Dear Jonathan,</p>
<p>Following your advise more than two years ago, I&#8217;ve succeeded to exchange partitions with referentiel integrity. See (ask tom) </p>
<p><a href="http://govt.oracle.com/pls/apex/f?p=100:11:0" rel="nofollow">http://govt.oracle.com/pls/apex/f?p=100:11:0</a>::::P11_QUESTION_ID:728425384831#60451928328887</p>
<p>Best Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: H.Tonguç YILMAZ Blog &#187; Convert A Partition Into A Stand-alone Table Example and Split Partition Example</title>
		<link>http://jonathanlewis.wordpress.com/2006/12/10/drop-parent-partition/#comment-415</link>
		<dc:creator><![CDATA[H.Tonguç YILMAZ Blog &#187; Convert A Partition Into A Stand-alone Table Example and Split Partition Example]]></dc:creator>
		<pubDate>Mon, 11 Dec 2006 12:57:54 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/2006/12/10/drop-parent-partition/#comment-415</guid>
		<description><![CDATA[[...] References http://www.psoug.org/reference/partitions.html http://jonathanlewis.wordpress.com/2006/12/10/drop-parent-partition/ [...]]]></description>
		<content:encoded><![CDATA[<p>[...] References <a href="http://www.psoug.org/reference/partitions.html" rel="nofollow">http://www.psoug.org/reference/partitions.html</a> <a href="http://jonathanlewis.wordpress.com/2006/12/10/drop-parent-partition/" rel="nofollow">http://jonathanlewis.wordpress.com/2006/12/10/drop-parent-partition/</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
