<?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: ORA-02449 Oracle Drop Table Error</title>
	<atom:link href="http://www.mydigitallife.info/2006/08/23/ora-02449-oracle-drop-table-error/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mydigitallife.info/2006/08/23/ora-02449-oracle-drop-table-error/</link>
	<description>Living Digitally and Electronically</description>
	<lastBuildDate>Fri, 11 Dec 2009 12:43:39 +0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Michael Komisarenko</title>
		<link>http://www.mydigitallife.info/2006/08/23/ora-02449-oracle-drop-table-error/comment-page-1/#comment-569680</link>
		<dc:creator>Michael Komisarenko</dc:creator>
		<pubDate>Tue, 07 Apr 2009 10:56:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydigitallife.info/2006/08/23/ora-02449-oracle-drop-table-error/#comment-569680</guid>
		<description>If you need to recreate a table you do not have to drop constraints. As an alternative you can disable constraints and then enable them back again.
The correct select statement to see which foreign keys reference the primary key of the parent table is as follows:

SELECT TABLE_NAME, CONSTRAINT_NAME
  FROM USER_CONSTRAINTS
 WHERE CONSTRAINT_TYPE = &#039;R&#039;
   AND R_CONSTRAINT_NAME = parent_table_primary_key;

You can use EXECUTE IMMEDIATE to disable constraints without necessarily dropping them.</description>
		<content:encoded><![CDATA[<p>If you need to recreate a table you do not have to drop constraints. As an alternative you can disable constraints and then enable them back again.<br />
The correct select statement to see which foreign keys reference the primary key of the parent table is as follows:</p>
<p>SELECT TABLE_NAME, CONSTRAINT_NAME<br />
  FROM USER_CONSTRAINTS<br />
 WHERE CONSTRAINT_TYPE = &#8216;R&#8217;<br />
   AND R_CONSTRAINT_NAME = parent_table_primary_key;</p>
<p>You can use EXECUTE IMMEDIATE to disable constraints without necessarily dropping them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sangam</title>
		<link>http://www.mydigitallife.info/2006/08/23/ora-02449-oracle-drop-table-error/comment-page-1/#comment-524548</link>
		<dc:creator>sangam</dc:creator>
		<pubDate>Thu, 24 Jul 2008 05:21:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydigitallife.info/2006/08/23/ora-02449-oracle-drop-table-error/#comment-524548</guid>
		<description>Great! The information provided is very helpful. It seems to be simple but really halps an lot. Thanks again.</description>
		<content:encoded><![CDATA[<p>Great! The information provided is very helpful. It seems to be simple but really halps an lot. Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: f</title>
		<link>http://www.mydigitallife.info/2006/08/23/ora-02449-oracle-drop-table-error/comment-page-1/#comment-520007</link>
		<dc:creator>f</dc:creator>
		<pubDate>Wed, 02 Jul 2008 22:30:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydigitallife.info/2006/08/23/ora-02449-oracle-drop-table-error/#comment-520007</guid>
		<description>Constrangimentos? Orra, meu revisa essa tradução aí e testa antes de postar!!! Se não seja honesto e indica o link de onde pegou!!!</description>
		<content:encoded><![CDATA[<p>Constrangimentos? Orra, meu revisa essa tradução aí e testa antes de postar!!! Se não seja honesto e indica o link de onde pegou!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vipin</title>
		<link>http://www.mydigitallife.info/2006/08/23/ora-02449-oracle-drop-table-error/comment-page-1/#comment-106289</link>
		<dc:creator>vipin</dc:creator>
		<pubDate>Thu, 08 Feb 2007 10:51:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.mydigitallife.info/2006/08/23/ora-02449-oracle-drop-table-error/#comment-106289</guid>
		<description>what if after dropping the table using the query blow you want again all those constraints.

DROP TABLE table_name CASCADE CONSTRAINTS;

please tell the query if u knows.</description>
		<content:encoded><![CDATA[<p>what if after dropping the table using the query blow you want again all those constraints.</p>
<p>DROP TABLE table_name CASCADE CONSTRAINTS;</p>
<p>please tell the query if u knows.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
