Tip

Application inventory script

This script will dynamically get the number of rows, objects and their definitions, and descriptions of schema objects. Good for review after a database refresh. I run this is a Windows/NT environment from SQL*Plus.

               
Prompt 'This script is hard coded with c:\temp and will write there' 
set pagesize 0 
spool c:\temp\count_rows.sql 
set termout off 
set echo off 
select 'select count(*) from '|| owner ||'.'|| object_name||';' from dba_objects 
where object_type = 'TABLE' and owner in ('DACS','FOOD') 
order by 1; 
spool off 
spool c:\temp\obj_rep.lis 
-- set echo off 
set termout on 
PROMPT '###################THE # OF OBJECTS BY OBJECT TYPE##########' 
select decode(grouping(object_type),0,to_char(object_type),'Total') 
object_type, count(*) from dba_objects 
where owner in ('DACS','FOOD') 
group by rollup(object_type); 
Prompt '########################THE # OF ROWS PER TABLE##############' 
set echo on 
@c:\temp\count_rows.sql 
set echo off 
PROMPT '##################### A LISTING OF THE OBJECT BY NAME AND TYPE###' 
select substr(owner,1,5), substr(object_name,1,30) Name, 
 substr(object_type,1,10) Type, status 
 from dba_objects 
where owner in ('DACS','FOOD') 
order by 1,3; 
spool off; 

For More Information

  • What do you think about this tip? E-mail the Editor at

    Requires Free Membership to View


This was first published in February 2002

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.

    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.