15

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.

2 Answers 2

12

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
Sign up to request clarification or add additional context in comments.

Comments

0

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

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.