How to transfer Oracle dump file to AWS RDS instance?(如何将 Oracle 转储文件传输到 AWS RDS 实例?)
问题描述
我在 EC2 实例上有一个现有的 .dmp 文件,该文件可以访问在 AWS 上运行 Oracle 11g 的 RDS 实例.
I have an existing .dmp file on EC2 instance which has access to RDS instance running Oracle 11g on AWS.
我已阅读在 AWS RDS 中导入数据,好像AWS不支持这种直传.
I have read Importing Data in AWS RDS, it seems that AWS does not support this kind of direct transfer.
它确实需要有一个 Source Oracle DB,您必须从中创建/导出 .dmp 文件,然后您可以将其传输到 目标 RDS 实例 通过建立数据库链接.
It does require to have a Source Oracle DB from where you have to create/export a .dmp file which you can then transfer to destination RDS instance by establishing a db link.
我的问题是,有没有一种方法可以将我现有的 .dmp 文件传输/导入到 RDS 实例上的 DATA_DUMP_DIR ?
My question is, is there a way I can transfer/import my existing .dmp file to the DATA_DUMP_DIR on RDS Instance?
有什么建议吗?
推荐答案
最终,我不得不启动另一个 AWS 实例,在其上安装 Oracle XE,然后将我的转储文件放入 DATA_PUMP_DIR &然后按照 AWS RDS 数据导入 指南进行操作.
Eventually, I had to spin up another AWS Instance, Install Oracle XE on it, then place my dump file in the DATA_PUMP_DIR & then follow the AWS RDS Data Import guide.
很烦人,没有其他方法可以做到这一点.并且没有对 RDS 实例的 SSH 访问只会加起来!此外,AWS Doc 也不清楚具体细节.
It's pretty annoying that there is no other way to do this. And having no SSH access to the RDS instace just adds up to that! Also, the AWS Doc is not clear about the particulars.
这篇关于如何将 Oracle 转储文件传输到 AWS RDS 实例?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将 Oracle 转储文件传输到 AWS RDS 实例?
基础教程推荐
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- oracle区分大小写的原因? 2021-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- 在多列上分布任意行 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
