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

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Oracle Baselines and Java Internals

RE: Oracle Baselines and Java Internals

From: Feighery Raymond <Raymond.Feighery_at_churchill.com>
Date: Wed, 21 Jul 2004 16:41:54 +0100
Message-ID: <817D2444710B934B9F7B8A1DAAF432D601F2AF5A@brcexm03>


I have the same behaviour in my 9.2.0.4 database.

No idea why.

Ray

-----Original Message-----
From: Jared.Still_at_radisys.com [mailto:Jared.Still_at_radisys.com] Sent: Wednesday, July 21, 2004 1:40 AM
To: oracle-l_at_freelists.org
Subject: RE: Oracle Baselines and Java Internals

> > Jared,
> >
> > >Track DDL_TIME, CREATION_DATE and TIMESTAMP for all objects.
> >

In the process of poking around in the data dictionary, I find that there are objects in sys.source$ that do not appear anywhere else. This is on 9.2.0.4.

What appears are objects, all triggers, that have been created at one time, but no longer appear in dba_triggers or sys.obj$.

The following SQL will dump source from sys.source$ that does not have a corresponding object ID in sys.obj$.

col obj# format 9999999
col line format 9999999
col source format a100
set line 130

select obj#, line,source
from sys.source$ o
where o.obj# in (

        select distinct obj#
        from sys.source$
        minus
        select s.obj#
        from dba_objects d, sys.source$ s
        where d.object_id = s.obj#

)
order by 1,2
/

I've just checked a 10g database, and it also has source that no longer appears in any DBA views.

Anyone have a possible explanation?

Jared



Please see the official ORACLE-L FAQ: http://www.orafaq.com

To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line.
--
Archives are at http://www.freelists.org/archives/oracle-l/
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
-----------------------------------------------------------------

___________________________________________________________________________ 


This email and any attached to it are confidential and intended only for the
individual or entity to which it is addressed.  If you are not the intended
recipient, please let us know by telephoning or emailing the sender.  You
should also delete the email and any attachment from your systems and should
not copy the email or any attachment or disclose their content to any other
person or entity.  The views expressed here are not necessarily those of
Churchill Insurance Group plc or its affiliates or subsidiaries. Thank you. 

Churchill Insurance Group plc.  Company Registration Number - 2280426.
England. 

Registered Office: Churchill Court, Westmoreland Road, Bromley, Kent BR1
1DP. 


----------------------------------------------------------------
Please see the official ORACLE-L FAQ: http://www.orafaq.com
----------------------------------------------------------------
To unsubscribe send email to:  oracle-l-request_at_freelists.org
put 'unsubscribe' in the subject line.
--
Archives are at http://www.freelists.org/archives/oracle-l/
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
-----------------------------------------------------------------
Received on Wed Jul 21 2004 - 10:55:37 CDT

Original text of this message

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