开发者

PL/SQL developer import dump

开发者 https://www.devze.com 2023-03-08 18:32 出处:网络
I have a dump file which includes two tables. Now I need to import t开发者_高级运维his dump file. I was instructed to create two tablespaces beforehands.Now how do I import this dump file to these tab

I have a dump file which includes two tables. Now I need to import t开发者_高级运维his dump file. I was instructed to create two tablespaces beforehands.Now how do I import this dump file to these tablespaces. I'm using PL/SQL developer.


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".

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号