Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: ORA-01401: inserted value too large for column
You learn something new every day. Knocking up a demo of trapping the
triggering statement for a 1401 (since we've had similar questions
twice recently) I stumbled across the fact that we can add 'upgrade to
10g' to my list of fixes
SQL>create table xxx (a number(2), b varchar2(5));
Table created.
SQL>insert into xxx values (12, 'abcdef'); insert into xxx values (12, 'abcdef')
*
-- Niall Litchfield Oracle DBA http://www.niall.litchfield.dial.pipex.com -- http://www.freelists.org/webpage/oracle-lReceived on Fri Feb 25 2005 - 05:12:48 CST