I am trying to learn about objects, but progess is stopped.
I attempted to create an object with the following:
CREATE type my_obj
AS object (
val1 VARCHAR2(10),
val2 VARCHAR2(10),
val3 date
)
I think the creation was successful, but have been unable to verify.
Is there a way I can prove that my_obj exists; e.g.
select * from sys_objects (psuecocode)
TIA, Joe
I attempted to create an object with the following:
CREATE type my_obj
AS object (
val1 VARCHAR2(10),
val2 VARCHAR2(10),
val3 date
)
I think the creation was successful, but have been unable to verify.
Is there a way I can prove that my_obj exists; e.g.
select * from sys_objects (psuecocode)
TIA, Joe