| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.misc -> Insertion Error: ORA-22819
It occured in one of my procedure, when one of column was inserted into
a table. I believe that the problem is in this section as following:
DECLARE
v_CodeRef REF supply_T ;
BEGIN
SELECT REF(A) INTO v_CodeRef FROM fl_supply A WHERE code =
v_curCode;
INSERT INTO fl_part_number
( part_number,
nomen,
code_r)
VALUES
( v_curPartNum, -- input parameter
v_nomen, -- input parameter
v_CodeRef);
v_nomen VARCHAR2(72),
code_R REF supply_T
( code VARCHAR2(10),
status VARCHAR2(1),
name VARCHAR2(16),
address_T add_T
C Chang Received on Sun Apr 21 2002 - 22:40:48 CDT
![]() |
![]() |