简体   繁体   中英

Import Oracle .dmp file using SQL Developer

I want to import a .dmp file exported from another database, and I was wondering if anyone have experience on using GUI import option for .dmp file from SQL Developer? I have searched a lot of documents, but I couldn't find any detail. I can use SYS or SYSTEM user to import.

what was this another database? was it oracle database? if yes the dmp file can be file exported by

  1. DataPump expdp util and you need import it by using impdp util
  2. the file can be exported by exp util and you can import it by imp util
  3. how to use this DataPump utils via SQL Developer UI see here

Simple and easy step

Set Oracle Home Path in env.property

ORACLE_HOME = Path

imp 'sys/admin AS SYSDBA' file=C:\Oracle_DB_Dump.dmp full=Y

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM