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 实例?
基础教程推荐
- 无法解决整理冲突 2021-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- 在 SQL 中连接多个表 2021-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- 是否可以执行按位分组功能? 2021-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
