Oracle Data Pump is a really cool utility for exporting data from your database. It is much faster than the traditional export utility. One of the ways Data Pump is able to speed up the process is through the use of parallel threads. Data Pump can utilize multiple threads to greatly reduce export time. I use an export as a way to check for corrupt data blocks. Oracle will not notify you of a corrupt data block until that block is accessed. It could be a long while before you found out. An export will read every data block and report on any corruptions. Thus, a nightly export provides a useful means for identifying corrupt blocks. The following command will launch Data Pump and export the entire database: expdp username/password full=y logfile=fulldb.log dumpfile=fulldb.dmp To use a parfile, simply issue the following: expdp username/password parfile=myparfile.par To utilize multiple threads, use the PARALLEL parameter along with the %U wildcard in the DUMPFILE parameter. The...