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

Home -> Community -> Usenet -> c.d.o.misc -> ORA-06531: Reference to uninitialized collection, Object Types with Inheritance!!!

ORA-06531: Reference to uninitialized collection, Object Types with Inheritance!!!

From: Anil G <anil_at_pipelinesoftware.com>
Date: 24 Feb 2006 23:42:47 -0800
Message-ID: <1140853367.916326.155740@z34g2000cwc.googlegroups.com>


Hi, i am using following code and getting "ORA-06531: Reference to uninitialized collection" ??

Please let me know...

Thanks,
Anil G

CREATE OR REPLACE TYPE t_a AS OBJECT(

           v_a VARCHAR2(100)
) NOT FINAL
/

CREATE OR REPLACE TYPE t_a_v AS VARRAY(100) OF t_a
/

CREATE OR REPLACE TYPE t_c AS OBJECT(

           v_d t_a_v
)
/

CREATE OR REPLACE TYPE t_b UNDER t_a (

           v_b VARCHAR2(100)
) FINAL INSTANTIABLE
/

Received on Sat Feb 25 2006 - 01:42:47 CST

Original text of this message

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