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: Database Size Question

Re: Database Size Question

From: Ari D Kaplan <akaplan_at_interaccess.com>
Date: Tue, 24 Oct 2000 12:48:05 -0500 (CDT)
Message-Id: <10659.120067@fatcity.com>


If you want the physical size of all tablespaces:

SELECT sum(bytes)/1048576 "Megs"
FROM dba_data_files;

To this, add redo logs:

SELECT sum(bytes)
FROM V$LOG; Control files are negligible compared to the above.

Best regards,

-Ari Kaplan
Independent Oracle DBA Consultant

<-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><->
<-> For 385+ Oracle tips, visit:                         <->
<->                                                      <->
<->             www.arikaplan.com                        <->
<->                                                      <->
<->             email: akaplan_at_interaccess.com           <->
<-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><->


On Tue, 24 Oct 2000, Sanjay Kumar wrote:

> Hi,
>
>
> How do I find the size of my database. I run Oracle816 on Solaris.
Received on Tue Oct 24 2000 - 12:48:05 CDT

Original text of this message

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