← Tutti gli articoli

Oracle Data Pump (expdp and impdp) in Oracle Database 10g and above

22 January 2013  ·  PLSQL · Recipe  ·  1070 visite
Import
CREATE OR REPLACE DIRECTORY RIDDELIMPORT AS 'C:\RIDDELIMPORT'
/
GRANT READ, WRITE ON DIRECTORY RIDDELIMPORT TO SOFIDUSR;
/


from the command prompt execute:
impdp sofidusr/XXPASSWORDXX directory=RIDDELIMPORT dumpfile=EXPDAT.DMP logfile=immmp.log
/
impdp sofidusr/xxxxx dumpfile=EXP_DELEGHERID directory=RIDDELIMPORT schemas=sofidusr logfile=impRiddel.log
 
Export
 
CREATE OR REPLACE DIRECTORY RIDDELEXPORT AS 'C:\RIDDELEXPORT'
/

GRANT READ, WRITE ON DIRECTORY RIDDELEXPORT TO SOFIDUSR;
/
in the command prompt execute:

expdp sofidusr/XXPASSWORDXX full=y directory=RIDDELEXPORT dumpfile=RIDDEL.DMP logfile=immmp.log
/
 
Si è verificato un errore imprevisto. Ricarica

Rejoining the server...

Rejoin failed... trying again in seconds.

Failed to rejoin.
Please retry or reload the page.

The session has been paused by the server.

Failed to resume the session.
Please retry or reload the page.