Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Importing a dmp file created by DataPump into Oracle Express 10g

How do i go about importing a .dmp file created by DataPump into Oracle Express 10g

like image 873
Alexandre Brisebois Avatar asked Nov 17 '25 01:11

Alexandre Brisebois


1 Answers

Source and More Information

Place the dump files in C:\oraclexe\app\oracle\admin\XE\dpdump

Schema Imports

impdp -user-/-pass- schemas=-schema- directory=-directory- dumpfile=-file.dmp-

i.e:

impdp scott/tiger@db10g schemas=SCOTT directory=TEST_DIR dumpfile=SCOTT.dmp logfile=impdpSCOTT.log

  • you may need to remap
like image 113
Alexandre Brisebois Avatar answered Nov 20 '25 04:11

Alexandre Brisebois