Import Oracle Database: Difference between revisions
Jump to navigation
Jump to search
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
==Create Directory== | ==Create Directory== | ||
<pre>SQL> create or replace directory DB_IMPORT as '/u01/app/oracle/admin/E1Local/import/';</pre> | <pre>SQL> create or replace directory DB_IMPORT as '/u01/app/oracle/admin/E1Local/import/';</pre> | ||
Move your exported file (files.dmp) in it. | |||
==Import== | ==Import== | ||
<pre> | <pre>impdp system/password@E1Local directory=DB_IMPORT DUMPFILE='JDECTL910.DMP' LOGFILE='imp_jdectl910.log'</pre> |
Latest revision as of 02:32, 14 October 2014
Create Directory
SQL> create or replace directory DB_IMPORT as '/u01/app/oracle/admin/E1Local/import/';
Move your exported file (files.dmp) in it.
Import
impdp system/password@E1Local directory=DB_IMPORT DUMPFILE='JDECTL910.DMP' LOGFILE='imp_jdectl910.log'