Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

exp and memory management.

Status
Not open for further replies.

marco17

IS-IT--Management
Oct 23, 2006
28
FR
hi ,

I've some memory problems during exports.
In production my swap and memory used is correct (according with the capabilities of my server), but during exports my swap become nearly full. I can't really increased is size for the moment.
Can i do something to limit the memory used by exp ?

marco.
(sorry for my horrible english)
 
Hi, Marco17

Perhaps compress=Y in the script?

Regards,



William Chadbourne
Oracle DBA
 
Actually, "compress=Y" causes the entire contents of each table to be consolidated into a single (possibly gigantic) extent. I don't believe that "compress=Y" has any effect upon memory consumption.

Marco, can you please post the full "exp" command that you are using, which causes the memory-consumption problem?

[santa]Mufasa
(aka Dave of Sandy, Utah, USA)
[I provide low-cost, remote Database Administration services: www.dasages.com]
 
thanks for your answers :

Here is ther command used for exp :
Code:
ficpipe="/prod/export/PipeOracle$$"
jour=`date +%w`
FICLOG=/batch/oracle/exp$SID.$jour.log
FICEXP=/prod/export/exp$SID.$jour.Z
compress -c <$ficpipe> $FICEXP & exp USERID=system/$motdepas FILE=$ficpipe FULL=Y \ GRANTS=Y COMPRESS=Y CONSISTENT=Y LOG=$FICLOG BUFFER=20971520 1>/dev/null

The instance that used to mutch memory supports lots of LOB.

Thansk,
Marco.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top