PL/SQL developer import dump

◇◆丶佛笑我妖孽 提交于 2019-11-30 20:29:14

You cannot import a dump file from PL/SQL developer. Instead, you have to do it from the command line. Furthermore, you need access to the file system of the database server since you have to put the dump file in a directory directly accessible by Oracle.

The tool to import the dump file is called impdp (in earlier version, it was imp).

My experience is that you need information how the dump file was created so you can use the correct import mode:

  • Is it a dump of the full database or just a single user/schema?
  • Does it include the table schema or just the table data?
  • What's the schema/user name if a single schema was exported?
  • etc.

You'll find more information about impdp on this PSOUG web page.

You CAN import a dump file from PL/SQL developer. Tools -> Import Tables... -> (at the botton of the popup screen) select the file and click in "Import".

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!