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

Thread: Export File Size

  1. #1
    Join Date
    Oct 2001
    Posts
    127
    How to estimate the size of Oracle Export File?
    Thanks in advance

  2. #2
    Join Date
    Dec 2001
    Posts
    221
    This is an extract from Oracle documentation -

    You can use table sizes to estimate the maximum space needed. Table sizes can be found in the USER_SEGMENTS view of the Oracle data dictionary. The following query displays disk usage for all tables:

    select sum(bytes) from user_segments where segment_type='TABLE';


    The result of the query does not include disk space used for data stored in LOB (large object) or VARRAY columns or partitions.
    Santosh Jadhav
    8i OCP DBA

  3. #3
    Join Date
    May 2002
    Location
    California, USA
    Posts
    175

    Cool

    You don't give any details about OS you are using.

    In case of UNIX here is how you can get the exact export file size: Estimating Oracle export file size

    Hope that helps,



    --clio_usa
    Senior Oracle DBA
    Oracle DBA forums: Click Here


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