PL/SQL 开发人员导入转储
我有一个转储文件,其中包含两个表。现在我需要导入这个转储文件。我被指示预先创建两个表空间。现在如何将此转储文件导入到这些表空间中。我正在使用 PL/SQL 开发人员。
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 to these tablespaces. I'm using PL/SQL developer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法从 PL/SQL Developer 导入转储文件。相反,您必须从命令行执行此操作。此外,您需要访问数据库服务器的文件系统,因为您必须将转储文件放在 Oracle 可以直接访问的目录中。
导入转储文件的工具称为impdp(在早期版本中,它是imp)。
我的经验是,您需要有关如何创建转储文件的信息,以便可以使用正确的导入模式:
您可以在此 PSOUG 网页impdp 的更多 >。
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:
You'll find more information about impdp on this PSOUG web page.
您可以从 PL/SQL Developer 导入转储文件。
工具->导入表...-> (在弹出屏幕的底部)选择文件并单击“导入”。
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".