我需要将转储文件移动到Oracle RDS实例,我已经提到了http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Oracle.Procedural.Importing.html,我知道可以使用dbms文件传输来实现,但我有几个问题:
1)假设我本地有一个转储文件,不能直接上传吗?我需要总是设置一个数据库,然后使用dbms_file_transfer来移动它吗?通常数据中心不能访问互联网,所以我们总是需要一个jum数据库?
2)假设我们的转储文件是600 GB (25 GB的多个文件),在RDS上移动这些文件有多容易、多可靠。我知道这在很大程度上取决于网络速度和距离,但数据库文件传输是传输600+ GB数据的可靠方法吗?
提前感谢
致以问候!
发布于 2017-11-10 18:30:40
我确实为这本手册导入了数据库。有必要采取几个步骤。
1) Create a free instance of EC2 or a paid instance with a large disk.
2) Install a free database version of the Oracle XE version.
3) Copy several files to the DUMP directory (the free instance of EC2 has a limit of 30 GB)
via the sftp protocol. (The speed depends on your Internet provider, downloading the oracle installation package from oracle.com was at a speed of 30 MB per second)
4) Transfer files to the RDS instance.
5) Delete files in the DUMP directory
6) repeat the steps 3,4,5 to transfer 600 GB.https://stackoverflow.com/questions/47219232
复制相似问题