<?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 on: Rename column or constraint in Oracle</title>
	<atom:link href="http://awads.net/wp/2005/07/15/rename-column-or-constraint-in-oracle/feed/" rel="self" type="application/rss+xml" />
	<link>http://awads.net/wp/2005/07/15/rename-column-or-constraint-in-oracle/</link>
	<description>News, views, tips and tricks on Oracle and other fun stuff</description>
	<lastBuildDate>Thu, 17 Jun 2010 03:52:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Eddie Awad</title>
		<link>http://awads.net/wp/2005/07/15/rename-column-or-constraint-in-oracle/comment-page-1/#comment-153</link>
		<dc:creator>Eddie Awad</dc:creator>
		<pubDate>Fri, 09 Sep 2005 01:19:14 +0000</pubDate>
		<guid isPermaLink="false">http://awads.net/wp/?p=75#comment-153</guid>
		<description>&lt;p&gt;Hi Lyle,&lt;/p&gt;

&lt;p&gt;Since I do not have the description of your table, or the error number and error description or your Oracle database version, or the scenario that generates the error I can only guess that the error may be related to a violation of column size or datatype.&lt;/p&gt;

&lt;p&gt;Moreover, in order to get more help, I suggest you join the &lt;a href=&quot;http://www.freelists.org/webpage/oradev&quot;&gt;oradev mailing list&lt;/a&gt; and ask your question(s) there (with more details).&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Lyle,</p>

<p>Since I do not have the description of your table, or the error number and error description or your Oracle database version, or the scenario that generates the error I can only guess that the error may be related to a violation of column size or datatype.</p>

<p>Moreover, in order to get more help, I suggest you join the <a href="http://www.freelists.org/webpage/oradev">oradev mailing list</a> and ask your question(s) there (with more details).</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Lyle B.</title>
		<link>http://awads.net/wp/2005/07/15/rename-column-or-constraint-in-oracle/comment-page-1/#comment-150</link>
		<dc:creator>Lyle B.</dc:creator>
		<pubDate>Thu, 08 Sep 2005 19:59:58 +0000</pubDate>
		<guid isPermaLink="false">http://awads.net/wp/?p=75#comment-150</guid>
		<description>&lt;p&gt;I have an insert statement and I occasionally get a unable to insert into table error.  Sometimes it works and sometimes it doesn&#039;t.  I have taken all the constraints off the Tables.  I have tried it with both variables and objects and it does intermittenly.&lt;/p&gt;

&lt;p&gt;My code is as follows.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;declare 

v_kit_num     varchar2(20);
v_vouch_num_seq    number(4);
v_vouch_num        varchar2(14);
v_qty_order        number;
v_order_date       date;
v_comment          varchar2(42);
v_sup_stock_num    varchar2(15);

begin 

 v_kit_num := :icb_kats_kits.kit_num;
 v_vouch_num_seq := null;
 v_order_date  := :icb_kats_order.order_date;
 v_vouch_num   :=  :icb_kats_order.vouch_num;
 V_qty_order   := :icb_kats_order.qty_order;
 v_comment     := :icb_kats_order.comment_ord;
 v_sup_stock_num := :icb_kats_order.sup_stock_num;

insert into ict_kats_order1
(kit_num, vouch_num, qty_order, order_date, sup_stock_num, comment_ord) 
values 
(v_kit_num, v_vouch_num, v_qty_order, sysdate, v_sup_stock_num, v_comment);

COMMIT;

END;
&lt;/code&gt;&lt;/pre&gt;
</description>
		<content:encoded><![CDATA[<p>I have an insert statement and I occasionally get a unable to insert into table error.  Sometimes it works and sometimes it doesn&#8217;t.  I have taken all the constraints off the Tables.  I have tried it with both variables and objects and it does intermittenly.</p>

<p>My code is as follows.</p>

<pre><code>declare 

v_kit_num     varchar2(20);
v_vouch_num_seq    number(4);
v_vouch_num        varchar2(14);
v_qty_order        number;
v_order_date       date;
v_comment          varchar2(42);
v_sup_stock_num    varchar2(15);

begin 

 v_kit_num := :icb_kats_kits.kit_num;
 v_vouch_num_seq := null;
 v_order_date  := :icb_kats_order.order_date;
 v_vouch_num   :=  :icb_kats_order.vouch_num;
 V_qty_order   := :icb_kats_order.qty_order;
 v_comment     := :icb_kats_order.comment_ord;
 v_sup_stock_num := :icb_kats_order.sup_stock_num;

insert into ict_kats_order1
(kit_num, vouch_num, qty_order, order_date, sup_stock_num, comment_ord) 
values 
(v_kit_num, v_vouch_num, v_qty_order, sysdate, v_sup_stock_num, v_comment);

COMMIT;

END;
</code></pre>]]></content:encoded>
	</item>
</channel>
</rss>
