Home > Oracle Tips > Oracle Database Administrator > List the KEPT status for PL/SQL objects in your database
Oracle Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

ORACLE DATABASE ADMINISTRATOR

List the KEPT status for PL/SQL objects in your database


Robert R. Blizard
06.20.2002
Rating: --- (out of 5)


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


This SQL*Plus script lets you list the KEPT status for PL/SQL objects (Packages, Procedures, Functions, and Triggers) in your database. You can show objects with a KEPT status of YES, NO, or both, and select the schema to show using standard Oracle wildcards. The script also lists the number of loads and executions for each object.

-- ShowKeptObjects.sql

set verify off

col owner form a15 wrap
col name  form a30 trunc
col type  form a12 trunc
col which new_value which noprint
col whose new_value whose noprint

accept which_in prompt 'Show kept status of - (A)ll, (Y)es, (N)o [Y]: '
accept whose_in prompt 'Show kept status for schema pattern [%]: '

SELECT DECODE( upper( substr( '&which_in', 1, 1)), 
             'Y', 'YES',
               'N', 'NO',
               'A', 'YES'', ''NO',
               'YES'
           ) which
FROM   DUAL;

SELECT DECODE( nvl( length(substr( '&whose_in', 1, 1)), 0), 
             0, '%',
               '&whose_in'
           ) whose
FROM   DUAL;

set pages 40 lines 100 pause on
set pause 'Press a key for more results...'

select owner, type, name, kept, loads, executions execs
from  v$db_object_cache
where type in ('PACKAGE', 
               'PACKAGE BODY', 
               'PROCEDURE', 
               'FUNCTION', 
               'TRIGGER')
and   kept IN ( '&which')
AND   owner LIKE UPPER( '&whose')
order by owner, type, name;

set pause off verify on

Reader Feedback

Zuwei X. writes: The output of this script is nice; however, I noticed the exec column displays a value 0 for all the objects, either kept or not--some objects even have thousands of reloads. Part of the output is below...

OWNER           TYPE         NAME                 KEPT LOADS      EXECS
--------------- ------------ -------------------- ---- ---------- ----------
BENEFITS        TRIGGER      BAD_AIU_TRG          NO   1          0
BENEFITS        TRIGGER      BAD_TRG              NO   1          0
BENEFITS        TRIGGER      BD_BU_TRG            NO   5          0
BENEFITS        TRIGGER      CB_TRIGGER           NO   4          0
BENEFITS        TRIGGER      HC_TRIGGER           NO   644        0
DMG             PACKAGE      DMG_PACKAGE          NO   1587       0
HRIS            PACKAGE      HRIS_PACKAGE         NO   4642       0

etc...

Michel B. writes: The script works well for me but the number of exec is always null due to bug 1764313, fixed in 9.0.2. At this time there is no workaround for getting the executions information. So your best bet is to pin common standard procedures and rely on your knowledge of the application to decide what to pin in the shared pool.

For More Information

  • What do you think about this tip? E-mail the editor at tdichiara@techtarget.com with your feedback.
  • The Best Oracle Web Links: tips, tutorials, scripts, and more.
  • Have an Oracle tip to offer your fellow DBAs and developers? The best tips submitted will receive a cool prize--submit your tip today!
  • Ask your technical Oracle questions--or help out your peers by answering them--in our live discussion forums.
  • Check out our Ask the Experts feature: Our SQL, database design, Oracle, SQL Server, DB2, metadata, and data warehousing gurus are waiting to answer your toughest questions.

Rate this Tip
To rate tips, you must be a member of SearchOracle.com.
Register now to start rating these tips. Log in if you are already a member.


Submit a Tip




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


RELATED CONTENT
Oracle Database Administrator
What is the difference between a database engineer, architect and administrator?
Import on one table from dump file
Error during RMAN backup
Can I drop a column in SYS schema?
STATSPACK tool: transaction vs. execution measurement
Should I port from Microsoft Access?
Installing multiple Oracle homes
How can I find statistics on total memory usage and database connections?
Modifying SYS password in a RAC environment
How to create Datafiles in a Data Guard (10g) environment

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.

HomeNewsTopicsTipsAsk the ExpertsWebcastsWhite PapersProductsBlogs
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides enterprise IT professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective IT purchase decisions and managing their organizations' IT projects - with its network of technology-specific Web sites, events and magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Reprints  |  Site Map




All Rights Reserved, Copyright 2003 - 2008, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts