Re: [JDBC] Query with tables from 2 different databases in Java - Mailing list pgsql-novice

From Richard Broersma Jr
Subject Re: [JDBC] Query with tables from 2 different databases in Java
Date
Msg-id 162676.53375.qm@web31814.mail.mud.yahoo.com
Whole thread Raw
List pgsql-novice
--- Mark Lewis <mark.lewis@mir3.com> wrote:

> On Thu, 2007-06-07 at 17:08 +0300, Loredana Curugiu wrote:
> > Hi,
> >
> > I need a query to use tables from 2 different databases and
> > that query to be executed from a .java file. What do you recommand?
> >
> > Thanks in advance!
> >
> >
> > Regards,
> >        Loredana
> >
>
>
> Move the data to a single database, or else perform the query manually
> by pulling back the matching results from each database individually and
> then stitching them together.


if the two databases are part of the same cluster you can use DBLINK so that one database can see
the table of enterest from the other.
http://pgfoundry.org/projects/snapshot/

if the two databases are not contained in the same cluster you can use DBI-LINK.
http://pgfoundry.org/projects/dbi-link/

Then from java, you only have to perform a simple query from one database.

Regards,
Richard Broersma Jr.

pgsql-novice by date:

Previous
From: Sean Davis
Date:
Subject: Re: Query with tables from 2 different databases in Java
Next
From: "Tomeh, Husam"
Date:
Subject: Re: Query with tables from 2 different databases in Java