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: PL/SQL delayed compilation

Re: PL/SQL delayed compilation

From: John Kanagaraj <john.kanagaraj_at_gmail.com>
Date: Fri, 31 Aug 2007 14:06:58 -0700
Message-ID: <2ead3a60708311406j7e5ee044k7fc51acb9ce7d2b5@mail.gmail.com>


Edgar,

I have heart a mention of this feature in LewisC podcast and also in Oracle
> 11g new feature white paper. Oracle white paper says:
>
> With Oracle Database 11g, both patch set and release upgrades are now
> significantly faster through the use of parallelism and delayed compilation
> of PL/SQL objects.
>
>

Apparently, Oracle Database 11g does this by recording dependency information at the granularity of the element within the object rather than at the whole object. For example dependencies on a procedure within a package is tracked rather than dependency on the package itself. Hence, if you

This is what I know - I am sure the Gurus would like to comment. Maybe someone with a 11g database can post the description/selected contents of DBA_DEPENDENCIES and run the query below:

select referenced_type, count(*) from dba_dependencies group by referenced_type;

-- 
John Kanagaraj <><
DB Soft Inc
http://www.linkedin.com/in/johnkanagaraj
http://jkanagaraj.wordpress.com (Sorry - not an Oracle blog!)
** The opinions and facts contained in this message are entirely mine and do
not reflect those of my employer or customers **

--
http://www.freelists.org/webpage/oracle-l
Received on Fri Aug 31 2007 - 16:06:58 CDT

Original text of this message

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