<?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: 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>
	<pubDate>Tue, 06 Jan 2009 04:26:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<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>Hi Lyle,

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.

Moreover, in order to get more help, I suggest you join the [oradev mailing list](http://www.freelists.org/webpage/oradev) and ask your question(s) there (with more details).</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 [oradev mailing list](http://www.freelists.org/webpage/oradev) 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>I have an insert statement and I occasionally get a unable to insert into table error.  Sometimes it works and sometimes it doesn't.  I have taken all the constraints off the Tables.  I have tried it with both variables and objects and it does intermittenly.

My code is as follows.

    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;</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>
<p>    declare </p>
<p>    v_kit_num     varchar2(20);<br />
    v_vouch_num_seq    number(4);<br />
    v_vouch_num        varchar2(14);<br />
    v_qty_order        number;<br />
    v_order_date       date;<br />
    v_comment          varchar2(42);<br />
    v_sup_stock_num    varchar2(15);</p>
<p>    begin </p>
<p>     v_kit_num := :icb_kats_kits.kit_num;<br />
     v_vouch_num_seq := null;<br />
     v_order_date  := :icb_kats_order.order_date;<br />
     v_vouch_num   :=  :icb_kats_order.vouch_num;<br />
     V_qty_order   := :icb_kats_order.qty_order;<br />
     v_comment     := :icb_kats_order.comment_ord;<br />
     v_sup_stock_num := :icb_kats_order.sup_stock_num;</p>
<p>    insert into ict_kats_order1<br />
    (kit_num, vouch_num, qty_order, order_date, sup_stock_num, comment_ord)<br />
    values<br />
    (v_kit_num, v_vouch_num, v_qty_order, sysdate, v_sup_stock_num, v_comment);</p>
<p>    COMMIT;</p>
<p>    END;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
