Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Database Size Question
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
![]() |
![]() |