Reputation: 1571
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
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