Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Problem with import of a ~2Gig table

Re: Problem with import of a ~2Gig table

From: Mario Bucsics <mario.bucsicsNOilSPAM_at_siemens.at>
Date: Tue, 17 Aug 1999 04:41:16 -0700
Message-ID: <2750ac20.ad7eeca6@usw-ex0107-050.remarq.com>


Hi

You can export the table from the first database with this command very fast:

exp user/pass file=file.dmp full=y log=file.log direct=y

If you like to import the Table fast you should make a rollback segment with the same size as the export file + 10 % more. Set all other rollback segments offline an start the import with the following command:

imp user/pass file=file.dmp full=y log=file.log

When you are rar in space then you could add the parameter "commit=y" to the import. This needs much longer as the import with the big rollback segment.

If you change the directory to "$ORACLE_HOME/rdbms/lib" and type "make impst" a single server import is generated. You can use the impst instead of imp to import data faster too.

 Regards

 Mario Bucsics

Received on Tue Aug 17 1999 - 06:41:16 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US