Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: ORA-01401: inserted value too large for column

RE: ORA-01401: inserted value too large for column

From: Bellow, Bambi <bbellow_at_chi.navtech.com>
Date: Thu, 16 Oct 2003 15:19:27 -0800
Message-ID: <F001.005D36AC.20031016151927@fatcity.com>


Embedded \0 on the assignment?

-----Original Message-----
Sent: Thursday, October 16, 2003 6:05 PM To: Multiple recipients of list ORACLE-L

Seeing this on AIX 5.1 64 bit Oracle 9.2.0.1.0 with char datatypes. Anyone aware of this issue?

CREATE TABLE CHAR_TEST
(
  CHAR1 CHAR(1)
)



CREATE OR REPLACE PROCEDURE TEST_CHAR (
  po_out OUT CHAR_TEST.CHAR1%TYPE -- this column is defined as CHAR(1) )
IS
BEGIN      po_out := 'X';   

EXCEPTION WHEN OTHERS
THEN
  dbms_output.put_line('Error: ' || SQLERRM); END;
--

Please see the official ORACLE-L FAQ: http://www.orafaq.net
--

Author: Post, Ethan
  INET: Ethan.Post_at_ps.net

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
--

Please see the official ORACLE-L FAQ: http://www.orafaq.net
--

Author: Bellow, Bambi
  INET: bbellow_at_chi.navtech.com
Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Thu Oct 16 2003 - 18:19:27 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US