Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Estimate Disk Space Needed for an Export Job
How To Estimate Disk Space Needed for an Export Job? - Oracle DBA FAQ - Loading and Exporting Data
✍: FYIcenter.com
If you just want to know how much disk space for the dump without actually exporting any data, you can use the ESTIMATE_ONLY=y parameter on the expdp command. The following tutorial exercise shows you how a system user wants to see the disk space estimates on a full database export:
>cd \oraclexe\app\oracle\product\10.2.0\server\BIN >expdp SYSTEM/fyicenter FULL=y ESTIMATE_ONLY=y Starting "SYSTEM"."SYS_EXPORT_FULL_01": SYSTEM/**** FULL=y ESTIMATE_ONLY=y Estimate in progress using BLOCKS method... Processing object DATABASE_EXPORT/SCHEMA/TABLE/TABLE_DATA . estimated "FLOWS_020100"."WWV_FLOW_PAGE_PLUGS" 42 MB . estimated "FLOWS_020100"."WWV_FLOW_STEP_ITEMS" 27 MB . estimated "FLOWS_020100"."WWV_FLOW_STEP_PROCESSING" 16 MB ...... . estimated "SYSTEM"."SQLPLUS_PRODUCT_PROFILE" 0 KB . estimated "TSMSYS"."SRS$" 0 KB Total estimation using BLOCKS method: 169.8 MB Job "SYSTEM"."SYS_EXPORT_FULL_01" successfully completed
Now you know that you need 170 MB disk space to export the entire data base.
Oracle also records the screen output in a log file called export.log at \oraclexe\app\oracle\admin\XE\dpdump.
2007-05-01, 5982👍, 0💬
Popular Posts:
If XML does not have closing tag will it work? No, every tag in XML which is opened should have a cl...
Which one of the following statements is TRUE in regard to overloading the ++ operator? 1 You cannot...
How To Build WHERE Criteria with Web Form Search Fields? - MySQL FAQs - Managing Tables and Running ...
How Can we change priority & what levels of priority are provided by Dot Net? Thread Priority ca...
Which are the various programming approaches for WCF?