Reputation: 183
I have two oracle connections and want to transfer the data/tables for a particular operational database from connection1(source) to connection2 (target). How would I do this?
Upvotes: 0
Views: 472
Reputation: 167962
Backup one database either using:
exp
/imp
(these are legacy utilities and you should probably use more modern ones);expdp
/impdp
; orrman
Then restore it on the other database.
Upvotes: 2
Reputation: 142705
Usually, we do that by Data Pump Export/Import utilities, they are designed for such a purpose (moving data around). Here's documentation; I suggest you read it.
Upvotes: 2