Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Move selected tables
Ron,
You can certainly create an Export Parameter file listing all of the tables you want to export - Select the table names and spool the result - then edit the result, creating an export parameter file - it would look something like:
userid= schema/pw file=exp_file_name.dmp buffer=65000 direct=y log=exp.log
tables=(
table1, table2...
)
exp parfile=(file name of par file)
imp userid=dbauser/pw file=exp_file_name.dmp fromuser=sourceschemauser touser=targetschemauser full=y log=imp.log
good luck!
Tom Mercadante
Oracle Certified Professional
-----Original Message-----
Sent: Monday, August 04, 2003 12:14 PM
To: Multiple recipients of list ORACLE-L
I need to move selected tables from one schema to another schema within the same database. The tables I need to move all start with the same prefix (abc_sometablename). Say there are 200 tables out of 1000 that I want to move. Is there an easy way to do this?
Thanks!
Ron
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Smith, Ron L.
INET: rlsmith_at_kmg.com
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Mon Aug 04 2003 - 11:29:29 CDT
![]() |
![]() |