Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Copy data from server to local of oracle

Re: Copy data from server to local of oracle

From: Bernhard Seeling <seeling_at_kzvth.ef.uunet.de>
Date: Thu, 1 Jul 1999 15:52:53 +0200
Message-ID: <7lfru4$esn$1@newsread.do.de.uu.net>

l.yn_at_263.net schrieb in Nachricht <7lflca$bid$1_at_nnrp1.deja.com>...
>Hi:
> I have created a tablespace named 'orders_space' on oracle8 server.
>Now I want to move all tables in 'orders_space' to my local pc with
>personal edition of oracle8 installed. Which command I will use?
>
>Thanks!
>
>John l.yn

Hi John ,
create a database link <dblink> on your personal ORACLE . create a script on the server in a spool-file. ...
spool transfer.sql
select 'create table '||table_name||' as select * from '||owner||'.'||table_name||'@<dblink> ;'   from dba_tables
where tablespace_name='ORDERS_SPACE';
...
execute transfer.sql on the PC

Received on Thu Jul 01 1999 - 08:52:53 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US