DBAsupport.com Forums - Powered by vBulletin
Results 1 to 5 of 5

Thread: How to calculate the database size

  1. #1
    Join Date
    Sep 2000
    Posts
    77
    How can I calculate the size of the database.
    Is it sum of size of all data files ,redo-log files and control files? Please advise.
    Thanks

  2. #2
    Join Date
    Apr 2002
    Posts
    50
    select sum(bytes/1024/1024)MB from dba_data_files; and
    select sum(bytes/1024/1024)MB from v$log;

    Total of this would give the space allocated (not the one used up).

    Shiva.

  3. #3
    Join Date
    Jun 2000
    Location
    Madrid, Spain
    Posts
    7,447
    it depends how accurate you want to get

    there are many threads about this matter, try a search before we continue

  4. #4
    Join Date
    May 2002
    Location
    California, USA
    Posts
    175
    Search no more ! Your answer is waiting for you here: http://www.dbaclick.com/cgi-bin/ib3/...275;hl=db+size

    It has ready to use scripts. Check it out.

    For more visit the latest Oracle DBA forums: http://www.dbaclick.com/cgi-bin/ib3/ikonboard.cgi?

    Hope that helps,



    --clio_usa
    Senior Oracle DBA

  5. #5
    Join Date
    Apr 2001
    Location
    London
    Posts
    725
    That link doesn't work!

    Think I'll stick with dbasupport.com
    Once you have eliminated all of the impossible,
    whatever remains however improbable,
    must be true.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width