Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Copy tables and indexes etc from one db to another
Or, consider export/import over UNIX pipes.
-----Original Message-----
Sent: Friday, April 05, 2002 12:54 PM
To: Multiple recipients of list ORACLE-L
I would recommend using a dblink. And I don't say *that* very often!
Set up a dblink to the source database and run CREATE TABLE new SELECT *
FROM old_at_dblink;
If you set up your SDU size to be large (ie 32K), it is possible to
drive the network pretty close to full capacity. If your database is too
large for this method, maybe transportable tablespaces via sneakernet
(tape)? One thing to watch with the dblink option is that LONG datatypes
are not supported.
Regards
James
> -----Original Message-----
> From: root_at_fatcity.com [mailto:root_at_fatcity.com] On Behalf Of
> Roland.Skoldblom_at_ica.se
> Sent: 05 April 2002 14:18
> To: Multiple recipients of list ORACLE-L
> Subject: Copy tables and indexes etc from one db to another
>
>
> Hallo,
>
> anyone whom can tellme the easiest way to copy tables etc
> from one database to another.
>
> Thanks in advance
>
> Roland
>
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> --
> Author:
> INET: Roland.Skoldblom_at_ica.se
>
> Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051
> San Diego, California -- Public Internet access / Mailing Lists
> --------------------------------------------------------------------
> 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).
>
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: James Morle INET: James.Morle_at_scaleabilities.co.uk Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- 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). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Deshpande, Kirti INET: kirti.deshpande_at_verizon.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- 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 Fri Apr 05 2002 - 13:25:33 CST
![]() |
![]() |