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 -> Re: How Big is My database?

Re: How Big is My database?

From: SatarNag <satarnag_at_aol.com>
Date: 1997/07/28
Message-ID: <19970728200801.QAA18910@ladder01.news.aol.com>#1/1

Try this. It returns the number of megabytes taken up by your datafiles and online redo log files.

select sum(bytes) / (1024*1024)
from ( select bytes from dba_data_files union all

       select bytes*members from v$log);

You will then need to add in the size of your controlfiles, which are generally very small.

-- 
Bob Swisshelm
Eli Lilly and Company
swisshelm_at_lilly.com




Thank You Bob Swisshelm, the information was useful.
Satar Naghshineh
Received on Mon Jul 28 1997 - 00:00:00 CDT

Original text of this message

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