Call now: 252-767-6166  
Oracle Training Oracle Support Development Oracle Apps

 
 Home
 E-mail Us
 Oracle Articles


 Oracle Training
 Oracle Tips

 Oracle Forum
 Class Catalog


 Remote DBA
 Oracle Tuning
 Emergency 911
 RAC Support
 Apps Support
 Analysis
 Design
 Implementation
 Oracle Support


 SQL Tuning
 Security

 Oracle UNIX
 Oracle Linux
 Monitoring
 Remote s
upport
 Remote plans
 Remote
services
 Application Server

 Applications
 Oracle Forms
 Oracle Portal
 App Upgrades
 SQL Server
 Oracle Concepts
 Software Support

 Remote S
upport  
 Development  

 Implementation


 Consulting Staff
 Consulting Prices
 Help Wanted!

 


 Oracle Posters
 Oracle Books

 Oracle Scripts
 Ion
 Excel-DB   


 

 

 


 

 

 
 

Oracle Data Pump Export expdp Tuning Tips

Oracle Tips by Burleson Consulting
December 13,  2008

 

Question:  I am using the Data Pump Utility for an export with expdp, and it runs terribly slow.  What are techniques for speeding-up an export?  Are there performance tuning techniques for exports?

Answer:  Yes, there are several techniques for speeding up Oracle exports.  I recommend Bert Scalzo's book "Oracle Utilities" for a full discussion of export performance tuning, and these tips for using the export query clause.

  • Traditional export vs., Data Pump Export - Some benchmark tests indicate that the traditional export utility (exp) runs twice as fast as the Data Pump export (expdp).

  • Use a Larger Export Buffer – For conventional path exports, a larger buffer will increase the number of rows that are processed between each physical write to the export file. Fewer physical writes equals greater performance. The following formula can be used to determine a proper buffer size:

    buffer size = rows in array * max row size
  • Separate the Tables – Separate those tables that require consistent=y from those that don’t, in order to expedite the export. This way, the performance penalty will only be incurred for those tables that actually require it.

  • Use Direct Path – Direct path exports (direct=y) allow the export utility to skip the SQL evaluation buffer, whereas the conventional path export executes SQL SELECT statements. With direct path, the data is read from disk into the buffer cache, returning rows directly to the export client. This can offer substantial performance gains, depending on the actual data. When using the direct path, the recordlength parameter should also be used to optimize performance.

  • Use faster media - An expert is I/O intensive and exporting from faster media like SSD will greatly reduce total export time.

  • Use export Subsets – By sub-setting the data using the export query option, the export process is only executed against the data that needs to be exported. If tables have old rows that are never updated, the old data should be exported once, and from that point only the newer data subsets should be exported. Subsets cannot be specified with direct path exports since SQL is necessary to create the subset.

expdp / file=$file tables=myexport query\=" where myexport_pidm in (select myexport_pidm from purdue.myexport where myexport_to_extract\=\'Y\' and myexport_export_status\=\'N\')\"

In addition to Oracle export utility modes, the export utility enables the user to specify runtime parameters interactively, on the command line, or defined in a parameter file (PARFILE).  Also, see my notes on Oracle tablespace exports.

Also see Export expdp command line syntax

 

 

For complete Oracle utilities tips and tricks, see the book "Advanced Oracle Utilities" by Bert Scalzo.

You can buy it direct from the publisher for 30%-off and get instant access to the code depot of Oracle scripts.


 

 

  
 

 
 
 
 
Oracle performance tuning software
 
 

 

 
 
 
Oracle performance Tuning 10g reference poster
 
 
 
Oracle training in Linux commands
 
Oracle training Excel
 
Oracle training & performance tuning books
 

 

Burleson is the American Team

Note: This Oracle documentation was created as a support and Oracle training reference for use by our DBA performance tuning consulting professionals.  Feel free to ask questions on our Oracle forum.

Verify experience! Anyone considering using the services of an Oracle support expert should independently investigate their credentials and experience, and not rely on advertisements and self-proclaimed expertise. All legitimate Oracle experts publish their Oracle qualifications.

Errata?  Oracle technology is changing and we strive to update our BC Oracle support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail:  and include the URL for the page.


                    









Burleson Consulting

The Oracle of Database Support

Oracle Performance Tuning

Remote DBA Services


 

Copyright ? 1996 -  2012 

All rights reserved.

Oracle ? is the registered trademark of Oracle Corporation.