Denise
Denise

Reputation: 183

how to copy all tables from one database to another one using oracle sql

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

Answers (2)

MT0
MT0

Reputation: 167962

Backup one database either using:

Then restore it on the other database.

Upvotes: 2

Littlefoot
Littlefoot

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

Related Questions