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 certain data from one database to another

Re: copy certain data from one database to another

From: osy45 <member18536_at_dbforums.com>
Date: Sun, 23 Feb 2003 11:30:17 +0000
Message-ID: <2564618.1045999817@dbforums.com>

why not use database link

create database link <link_name> for <user> identified by <pwd> using '<sid>';
insert into <table> * from <table>@<link_name> where id != id@<link_name>;

osy45

--
Posted via http://dbforums.com
Received on Sun Feb 23 2003 - 05:30:17 CST

Original text of this message

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