PL/SQL 开发人员导入转储

发布于 2024-11-10 02:11:42 字数 90 浏览 3 评论 0原文

我有一个转储文件,其中包含两个表。现在我需要导入这个转储文件。我被指示预先创建两个表空间。现在如何将此转储文件导入到这些表空间中。我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

恋竹姑娘 2024-11-17 02:11:42

您无法从 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:

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

假扮的天使 2024-11-17 02:11:42

您可以从 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".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文