Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: objects
Hello Simon,
there exists a Data Dictionary View, called "USER_OBJECTS". It is defined as following:
OBJECT_NAME VARCHAR2(128) Name of the object SUBOBJECT_NAME VARCHAR2(30) Name of the sub-object (for example, partition) OBJECT_ID NUMBER Object number of the object DATA_OBJECT_ID NUMBER Object number of the segment which contains the object OBJECT_TYPE VARCHAR2(15) Type of the object (eg, TABLE, INDEX) CREATED DATE Timestamp for the creation of the object LAST_DDL_TIME DATE Timestamp of the last DDL command applied to the object (including grants and revokes) TIMESTAMP VARCHAR2(19) Timestamp for the creation of the object (character data) STATUS VARCHAR2(7) Status of the object: VALID, INVALID TEMPORARY VARCHAR2(1) Can the current session only see data that it place in this object itself? GENERATED VARCHAR2(1) Was the name of this object system generated? SECONDARY VARCHAR2(1) Is this a secondary objectcreated as part of create for domain indexes?
Querying this view should solve your problem:
SELECT object_name, object_type, status FROM user_objects;
simon cunningham schrieb:
>
> Does anyone know what the pl/sql command is to view what objects you
> have created in your schema.
>
> Thanks
Regards, Jens Hartwig
Tel. : +49 (0)30 2554-3282 Fax : +49 (0)30 2554-3187 Mail : jhartwig_at_debis.com =============================================Please consider: The statements expressed in this mail do represent the authors opinion and are not necessarily identical with those of debis Systemhaus GEI.
![]() |
![]() |