How to estimate the size of dump file

Hi,
I would like to export my full database.
My database size is nearly 50G.
How to know how much space the export dump will occupy?
Thanks,
Kavitha

SELECT SUM(AVG_ROW_LEN * NUM_ROWS) FROM DBA_TABLES;
you should then add an 10-20% to the result due to the definitions in the export file.
Source:Paul M. @ Re: estimating size of a .dmp file
HTH
Girish Sharma

Similar Messages

  • How to change the size of redo file

    Deal all,
    I finish installed the db,and the size of redo file is 50m by default. I found many "checkpoint not complete" events in alert.log file.
    Now i want to change it to 100M and try to avoid the event appear again ,how can i do?

    As Sb has already correct reply that size of redo logs can not be changed. We have to create new bigger/smaller size of redo logs and then 'alter system switch logfile' to inactivate older logs. Now you can drop older logs. Redo logs are something a glass of water. We can not change the size of glass, if we wish to dring more/less water, we will take that sized glass and we will get that sized water.
    Remember to consider the multiplexing/grouping when doing any maintenance like this. And there may be archive log & backup space considerations.
    Hans @ http://dbaspot.com/oracle-server/33231-changing-redo-log-file-size.html
    Regards
    Girish Sharma

  • How to find the size of a file or folder

    How can I find the size of a file or folder?
    I am trying to determine the size of my iPhoto and Mail folder.
    It says "Size: --" under general from Get Info.

    It's working fine...
    When you ask for that info, and Finder presents those '--' dashes instead of a value, actually, Finder is calculating the value in background.
    That's something that i recently noticed and wonder why tha heck he needs to do all that work by himself, kinda re-inventing the wheel of file size value "calculus"...
    I posted some thoughts about it here: File / Folder size... How do Finder gets it?
    Will appreciate feedback about this!
    Props!

  • How to know the size of a file in a program ?

    I am compiling a program and I have to use a function in Java to know the size of some files. How can I do? Thanks

    File.length() not good enough?

  • How to determine the size of a file on application server

    Hello,
    using open dataset I have created a file on the application server and have put some data into the file.
    Now I want to know the size of this file.
    Is there a function module to do this ?
    Best regards
    Michael

    Hi,
    Use Function module   'EPS_GET_FILE_ATTRIBUTES'
    DATA fsize TYPE epsf-epsfilsiz.
    CALL FUNCTION 'EPS_GET_FILE_ATTRIBUTES'
      EXPORTING
        file_name =     " here provide filename
        dir_name  =    "  here provide directory
      IMPORTING
        file_size = fsize.
    WRITE: 'File size' , fsize.
    Regards,
    Ravi

  • How to get the size of a file DONE

    How can I get the size a file? I want to do the following....
    File clobDataFile = new File("clob.dat");
    PrintWriter clobpw = new PrintWriter(new BufferedWriter(new FileWriter(clobDataFile)));
    int               offset     = //get the number of chars in the fileOk I am a tard... figured it out...
    File clobDataFile = new File("clob.dat");
    PrintWriter clobpw = new PrintWriter(new BufferedWriter(new FileWriter(clobDataFile)));
    int               offset     =colbDataFile.length();

    read API http://java.sun.com/j2se/1.5.0/docs/api/java/io/File.html#length()
    next time you have a similar question please refer this document

  • How to estimate the size of the database object, before creating it?

    A typical question arise in mind.
    As DBA's, we all known to determine the objects size from the database.
    But before creating an object(s) in database or in a schema, we'll do an analysis on object(s) size in relation with data growth. i.e. the size we are estimating for the object(s) we are about to create.
    for example,
    Create table Test1 (Id Number, Name Varchar2(25), Gender Char(2), DOB Date, Salary Number(7));
    A table is created.
    Now what is the maximum size of a record for this table. i.e. maximum row length for one record. And How we are estimating this.
    Please help me on this...

    To estimate a table size before you create it you can do the following.  For each variable character column try to figure out the average size of the data.  Say on average the name will be 20 out of the allowed 25 characters.  Add 7 for each date column.  For numbers
    p = number of digits in value
    s = 0 for positive number and 1 for a negative number
    round((( length((p) + s) / 2)) + 1
    Now add one byte for the null indicator for each colmn plus 3 bytes for the row header.  This is your row length.
    Multiply by the expected number of rows to get a rough size which you need to adjust for the pctfree factor that will be used in each block and block overhead.  With an 8K Oracle block size if you the default pctfree of 10 then you lose 892 bytes of storage.  So 8192 - 819 - 108 estimated overhead = 7265 usable.  Now divide 7265 by the average row length to get an estimate of the number of rows that will fit in this space and reduce the number of usable bytes by 2 bytes for each row.  This is your new usable space.
    So number of rows X estimate row length divided by usable block space in blocks.  Convert to Megabytes or Gigabytes as desired.
    HTH -- Mark D Powell --
    ed add "number of usable"

  • How to estimate the size of query results

    i have 3 tables
    table_h : 10,000 records and 50columns
    table_l : 13,000 records and 75 columns
    table_ld : 25,000 records and 120 columns
    i wrote a query to fetch data based on the 3 tables, and fetching 25,00 records.
    ie ( 5 coulms from table_h, 12 coulmns from table_l and 120 columns from table_ld)
    how i have to get the size of this query results.

    What "size" are we talking about here? There are many different ways to interpret that-- it could be the size of the memory buffer that would be allocated on the client. It could be the size that would be required to store the result in a table in the database. It could be something else. But the answer may differ substantially.
    Regardless, it's probably going to be something like (number of rows) * (sum of sizes of each column). But the size required for each column is a bit variable
    - Client applications, in general, are going to allocate a memory buffer based on the maximum size of the column (LOB and LONG columns excepted). So if you declare a VARCHAR2(4000) but only store 1 byte in that column, most client applications are going to allocate 4k for that column for each row. It might be even worse than that-- if the client application happens to treat character data as Unicode, it probably uses the UTF-16 encoding in memory, which means allocating 2 bytes for every byte in the database (assuming the database character set supports single-byte characters primarily).
    - The Oracle database, on the other hand, is not going to allocate more disk than is actually required to encode variable width data. So the 1 byte column only requires 1 byte of storage (plus a length). That's great for storage efficiency, but that makes computing the actual size a bit more complicated because you now need to know the actual size of data stored in each row (or at least the statistical distribution) rather than the table definition.
    Justin

  • How to Monitor the size of log file (Log4j) During its Generation.

    i have made a program using log4j technology. Now i want to know that is there any method that i can restrict the size of the log file. for example if the size of generating log file exceeds the restricted size then it should be placed in backup and a new file should be automatically generate and remaining contents should be written in that file.
    is there any method that can monitor the size of file during the generation of that (say) log file.
    Waiting for ur Urgent response

    I have wrote that code
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
    <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
    <appender name="appender" class="org.apache.log4j.FileAppender">
    <param name="File" value="c:\\abc.txt"/>
    <param name="MaxFileSize" value="100B"/>
    <param name="MaxBackupIndex" value="3"/>
    <param name="Append" value="false"/>
    <layout class="org.apache.log4j.SimpleLayout"></layout>
    </appender>
    <root>
    <priority value ="debug"/>
    <appender-ref ref="appender"/>
    </root>
    </log4j:configuration>
    When i run it it gave me error Message
    log4j:WARN No such property [maxFileSize] in org.apache.log4j.FileAppender.
    log4j:WARN No such property [maxBackupIndex] in org.apache.log4j.FileAppender.

  • How to estimate the size of Encore final authoringoutput for a dvd or .iso image?

    I animated a lot of pictures on timelines, but did not realised some are over 10 gigs!, meaning it won't even fit on a double layer dvd! Is it possible to reduce this size? I thought I'd run into this problem only with HD clips! I know I can always divide them but I did not want too many dvd.
    Well I did not post this and went on authoring  instead to see what would happen. I had a few 300mb files and two over 10 gb but after encoding (the lot), it was only 2.6 gb! What a relief, but how can I predict my output. I put the question to the forums in various forms for previous discussion but somehow it did not return anything relevant. ( I seem to have run into this problem b4 but can't recall the outcome!)

    >some are over 10 gigs
    Photo Scaling for Video http://forums.adobe.com/thread/450798
    -Too Large May = Crash http://forums.adobe.com/thread/879967

  • How to get the size of uploaded file in sap ABAP MODULE POOL PROGRAMMING

    Hello,
    I am using a fucntion module GUI UPLOAD to upload a file from pc to SAP .
    I want to upload the details of the file.
    i.e TYPE NAME AND SIZE of the file.
    I am unable to do so.
    Help me.
    Gaur Mayank

    Perhaps you could count this by yourself...
    You could approach the correct size by calculating the number of bytes contained in each rows of your table.
    For this you will first need to upload the file to a table of string, so that each field separator is counted.
    something like:
    DATA: lt_data TYPE STANDARD TABLE OF string,
          l_len TYPE i.
    FIELD-SYMBOLS <data> TYPE string.
    "... gui_upload to lt_data              
    DESCRIBE TABLE lt_data LINES l_len.
    l_len = ( l_len - 1 ) * 2.        "Count 2 bytes at end of each line for CRLF
    LOOP AT lt_data ASSIGNING <data>. "Add length of each line
        l_len = l_len + strlen( <data> ).
    ENDLOOP.
    WRITE: l_len.
    This for a single-byte codepage of course... you can use charlen in order to have the length of one char on your system, here I'm asuming it is 1.
    Kr,
    Manu.

  • How to get the size of a file that will be uploaded by download component

    hi i want to show some extra information with download component like size of file how can i do it ?? is anybody having any idea??

    Hi karansheel,
      Use getData().getLength() not working ?
    http://forums.adobe.com/message/4759683
    Thanks,
    Sham
    @adobe_sham

  • How to estimate the size of Encore DVD finish product?

    Hello again!
    I have a large holiday project that will spread over several DVD. But I would at least arrange things is a logical way on a mix of single and dual layer disks.
    I have put together two time lines that by my calculation were over the DVD Capacity but it seems that I had plenty of room to fit them in (hoops used a double layer for 5.6 gig!) just the same I'd like to know if I can rely on what I see .
    I thought may be the encoded file is smaller than it's AVI source but no it the same (since a found out that you can encode in the background whilst working on the rest of your project.)
    So are those files, once in the DVD, exactly the same size are they show in the project window? and do I need to account for the other extra things done in Encore ie Menu, menu animation, chapter etc.
    What would be the right way to go about it.
    I had two files adding to 8.47GB that should really go together but I feared I was too close to the D/L full capacity and started to search for answers
    Thank you
    Michel

    I have to say my question has been answered even if I have problem to understand the answer! But thanx Mylleneum, my search got me to Ken Stone (final cut pro web site) who offers bit budgeting calculator on Excel ( and Mac too). All I need to do now is get my brain around it!

  • How to reduce the size of EAR file

    Hi,
    In our project we are getting EAR of size 60MB .
    While checking over that i have noticed there are 45 MB of jar files in the lib .
    Is it possible to make the JAR files out side the EAR file and in specified location and refer with class path.
    Please advice

    As Frank suggests,
    1). Deploy those utilities as shared libraries on WebLogic
    2). Edit the weblogic-application.xml to refer to the shared libraries (you'll find weblogic-application.xml in the application navigator, the application resources tab, descriptors->META-INF folder). Use the "libraries" tab in the weblogic-application.xml editor to make it easy.
    3). Check the deployment profiles (Application properties->Deployment->edit and Project properties->Deployment->edit) as well as your library definitions (tools->manage libraries - check for "deploy by default") to ensure that the library JAR files don't get packaged up in the EAR
    John

  • How to query the size of a file?

    as title~
    How can I do?

    Is the return value in bytes?Yep. (Assuming you mean the length of the file in
    bytes: ie 1074 bytes, etc...) If you mean "does it
    return an array of bytes?" ... then no, as in my
    original post, it returns a long.Thanks a lot.

Maybe you are looking for

  • GeoRaptor 3.0 for SQL Developer 3.0 and 2.1 has now been released

    Folks, I am pleased to announce that, after 5 months of development and testing, a new release of GeoRaptor for SQL Developer 2.1 and 3.0 is now available. GeoRaptor for SQL Developer 3 is available via the SQL Developer Update centre. GeoRaptor 3 fo

  • Tomcat startup VS service

    Hi I am using Struts1.2.2 and tomcat5.0.0.28 and windows xp. I tried to open notepad,when i click jsp link using following code Runtime.getRuntime().exec(�notepad.exe�); Its work for me, If start tomcat thru %TOMCAT-HOME%\bin\startup command. But its

  • Why does Adobe Reader change my icons to pdf?

    Why does Adobe Reader change my icons to pdf?

  • "Aspect Ratio of this file is not supported"

    HI While I have used Premier Pro for some time, I am only an occasional creator of DVD.  Today I have had the error message above, but am unsure where to start to sort it out. I have loaded up an HVD original (1440*1080) into PP and then, after some

  • Xserver

    Hi, I have Xserver error during booting. eeror as per below: Fatal server error: Couldn't open X pointer device!  Is one attached? ^[gXIO:  fatal IO error 232 (Connection reset by peer) on X server "hp83k-3:0.0" ^M       after 0 requests (0 known pro