Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Make export / Import run faster ?
Got the following Article from Somewhere . I need to try it out though .
Any Concerns with using the Following Approach ?
CASE - What can be done to make export/import run faster?
> The IMP/EXP programs run in two task mode to protect the SGA from
> potential corruption by user programs. If you relink these programs in
> single task mode you can gain much improvement in speed (up to 30%).
> Although Oracle won't support this they supposedly use this method
> themselves.
> Although running in single-task is faster, it requires more memory
> since the Oracle executable's text is no longer shared between the
> front-end and background processes. Thus, if you need to transfer
> large amounts of data between databases, relink the executale for
> greater efficiency.
> cd $ORACLE_HOME/rdbms/lib
> make -f ins_rdbms.mk singletask
> # make -f ins_rdbms.mk expst
> # make -f ins_rdbms.mk impst
> # make -f ins_rdbms.mk sqlldrst
> # mv expst $ORACLE_HOME/bin/
> # mv impst $ORACLE_HOME/bin/
> # mv sqlldrst $ORACLE_HOME/bin/
> Now use expst and impst instead of imp or exp.
>
>
-- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: VIVEK_SHARMA INET: VIVEK_SHARMA_at_infosys.com Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Tue May 06 2003 - 01:21:41 CDT