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

Home -> Community -> Usenet -> c.d.o.server -> what is user_objects.DATA_OBJECT_ID?

what is user_objects.DATA_OBJECT_ID?

From: G M <zlmei_at_hotmail.com>
Date: 7 Mar 2002 13:14:29 -0800
Message-ID: <50a5e6b6.0203071314.7ba72709@posting.google.com>


Hi:

I have a question about user_objects.DATA_OBJECT_ID column.

According to Oracle's Documentation:



DATA_OBJECT_ID NUMBER Dictionary object number of the segment that contains the object  

Note: OBJECT_ID and DATA_OBJECT_ID display data dictionary metadata. Do not confuse these numbers with the unique 16-byte object identifier ("object ID") that Oracle assigns to row objects in object tables in the system.


We have two databases and in them there is one index that I am trying to compare. The only difference is that one of them has "DATA_OBJECT_ID" null. What does that mean?

on db1:

SQL> select * from user_objects where object_name =
'COREREF_ABSTRACT';
OBJECT_NAME


SUBOBJECT_NAME                  OBJECT_ID DATA_OBJECT_ID OBJECT_TYPE
------------------------------ ---------- --------------
------------------
CREATED   LAST_DDL_ TIMESTAMP           STATUS  T G S
--------- --------- ------------------- ------- - - -
COREREF_ABSTRACT
                                     6281                INDEX
08-FEB-02 08-FEB-02 2002-02-08:05:11:46 VALID N N N   on db2:

SQL> select * from user_objects where object_name =
'COREREF_ABSTRACT';
OBJECT_NAME


SUBOBJECT_NAME                  OBJECT_ID DATA_OBJECT_ID OBJECT_TYPE
------------------------------ ---------- --------------
------------------
CREATED   LAST_DDL_ TIMESTAMP           STATUS  T G S
--------- --------- ------------------- ------- - - -
COREREF_ABSTRACT
                                     4928           9401 INDEX
11-SEP-00 03-MAR-02 2000-09-11:16:55:12 VALID N N N Received on Thu Mar 07 2002 - 15:14:29 CST

Original text of this message

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