Pinchas K
Pinchas K

Reputation: 1571

How to make copy of tables in Oracle?

I need to send a couple of tables from our Oracle database to one of our developers. I usually just send the entire database. But how to send only selected tables?

Upvotes: 1

Views: 685

Answers (1)

Viper
Viper

Reputation: 2236

You can use the Export tool from oracle.

exp scott/tiger file=emp.dmp tables=(emp,dept)    

Here is a link to the FAQ from oracle.

Upvotes: 2

Related Questions