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

Home -> Community -> Usenet -> c.d.o.misc -> Re: Move data from one server to another

Re: Move data from one server to another

From: Greg Kainz <gkainz_at_orapro.com>
Date: 1997/11/23
Message-ID: <3478F780.B621FE55@orapro.com>#1/1

sure; create a database link from the target database to the source database like

create database link my_link connect to user identified by password using 'connect_string';

and then you can insert into target tables with

insert into target_tables (blah,blah1,blah2) values select (blah,blah1,blah2) from source tables;

or create table xyz as select * from abc_at_database_link; ...

Casper Thrane wrote:

> Hi!
>
> Is it possible to move data from one server to another server through
> sql*plus/sql-script?
> --
> Casper Thrane
> Systemdeveloper
> Benau A/S
Received on Sun Nov 23 1997 - 00:00:00 CST

Original text of this message

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