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: 1 select statment take data from several remotes databses ?

Re: 1 select statment take data from several remotes databses ?

From: Ton Haver <ton.haver_at_cover.nl>
Date: Sun, 24 Oct 1999 20:58:47 +0200
Message-ID: <381356E7.66B83820@cover.nl>


I'm not sure what you're asking for, but if you have simalar tables on different databases and want to union their contents you can make database links to them. See for the correct syntax in the sql handbook (create database link remote_database ..........). The sql looks then:

select * from scott.emp
union all
select * from scott.emp_at_remote_database

Ton

zohar wrote:

> hi there :
>
> how can i make a simple select statment, and retrive data from several
> remote databases
>
> thanks zohar
Received on Sun Oct 24 1999 - 13:58:47 CDT

Original text of this message

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