PL/SQL developer import dump

前端 未结 2 676
忘了有多久
忘了有多久 2021-01-05 12:50

I have a dump file which includes two tables. Now I need to import this dump file. I was instructed to create two tablespaces beforehands.Now how do I import this dump file

相关标签:
2条回答
  • 2021-01-05 13:20

    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 讨论(0)
  • 2021-01-05 13:28

    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.

    0 讨论(0)
提交回复
热议问题