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

Thread: How to see Database size ?

  1. #1
    Join Date
    Dec 2000
    Posts
    1

    Question

    How can I see Database size in Oracle, and what are Oracle 8i
    Tools.

    kindly suggest please.
    with kind regards,
    Badri.

  2. #2
    Join Date
    Jul 2000
    Posts
    53
    select sum(bytes/1024/1024) MB
    from dba_data_files;

    This will give you the size of all datafiles.

    Is this what you meant?
    Steve

  3. #3
    Join Date
    Nov 2000
    Posts
    198
    Add to this the size (in megabytes) of your redo logs:

    select sum(bytes)/1024/1024 from v$log;


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