0

For a POC, we need 10 GB of data to be available in Oracle RDS instance. Any test data is ok ( like TPC for benchmarking ) , for this requirement is there any specific way to create database and pump the sample data ?

4

1 回答 1

0

假设你已经打开了RDS服务器的防火墙1521端口,你应该可以使用sqlplus、sqlci、sqlldr连接RDS实例,如下:

USER/PASSWORD@//hostName:port/SID

例如

sqlplus scott/tigerD@//myhost.this.that.amazon.com:1521/THE_SID

一旦你证明这是可行的,在工具中使用它来将数据喷射到 RDS 实例中。

例如 .sql INSERT 脚本、sqlldr 脚本等。

于 2019-02-17T10:09:00.893 回答