|
|
Re: Why doesn't this work ? [message #38630 is a reply to message #38618] |
Wed, 01 May 2002 10:28 |
oraboy
Messages: 97 Registered: October 2001
|
Member |
|
|
This is what documentation says.,
Cause: An attempt was made to do one of the following: define a table type
which contained nested collection types. or define an object table
that has (perhaps nested) another table type or VARRAY type.
Action: Check the table definitions to be sure that they do not contain
nested tables or VARRAYs.
Probably, your code shud have been like this ..
CREATE TYPE planet_t AS OBJECT (
name VARCHAR2(20),
mass NUMBER,
satellites satellite_t );
Oraboy
|
|
|
Re: Why doesn't this work ? [message #38635 is a reply to message #38618] |
Wed, 01 May 2002 20:54 |
Yogita
Messages: 8 Registered: April 2002
|
Junior Member |
|
|
But this is an example in the oracle 9i documentation. I just borrowed from that. My previous mail has the link to the example in oracle docs.
Is there any other way to represent this nested collection types?
Thanks
-Yogita
|
|
|