Amazon RDS - Oracle DB Data Import



To import data into the RDS oracle database or export data from it, we need to consider the size of the data involved and use a appropriate technique. The Sql Developer tool which we use to connect to AWS RDS oracle instance, can be used for both export and import small volume of data like 20MB or so. But to import data of size in terabytes, we need to use oracle data pump.

Exporting Data Using SQL Developer

Step-1

After connecting to the AWS RDS Oracle DB, choose tools and Database Export.

oracle_export_1.jpg

Step-2

The next step asks for the type of export where we decide the export format.

oracle_export_2.jpg

Step-3

Next we decide on the DB objects to be exported.

oracle_export_3.jpg

Step-4

We can further decide on the name of the objects to be exported.

oracle_export_4.jpg

Step-5

We can further decide on the objects attributes to be exported.

oracle_export_5.jpg

Step-6

Finally we get the summary screen where we can revisit the objects we have choosen.

oracle_export_6.jpg

Clicking finish on the above step will export the DB into a file in choosen format.

Importing Data Using SQL Developer

Similar to the export steps above we can choose to import the db by using Database Copy command from the Tools menu option.

Advertisements