Re: Multiple database queries

From: David Fetter <david(at)fetter(dot)org>
To: Cosmopo <tempo(at)marquo(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Multiple database queries
Date: 2005-10-02 18:36:59
Message-ID: 20051002183659.GC22837@fetter.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Sat, Oct 01, 2005 at 09:37:49PM -0700, Cosmopo wrote:
> Hello,
>
> I was using many years ago Sybase that was able then to query
> several tables that could be located in more than one database... I
> know that Postgresql did not at the time have this capability.
>
> Does the new version 8.0.x ofter this feature? We need to create
> several databases based on our customer's specs... but we need our
> own customer, permission, history, etc database. We want to be able
> to query 2 database that would have share customer's ID and other
> info.

I don't know exactly what you mean by tables that can be located in
more than one database, as "database" has several definitions, but
PostgreSQL has "schemas" which are essentially namespaces inside the
same database, and you can query across schemas without extra add-ons.

You can also use Slony-I master-slave replication <http://slony.info>
to replicate, for example, your customer table to several different
databases. The replicated tables are read-only on the slaves, but
that shouldn't present insurmountable problems.

HTH :)

Cheers,
D
--
David Fetter david(at)fetter(dot)org http://fetter.org/
phone: +1 510 893 6100 mobile: +1 415 235 3778

Remember to vote!

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Todd A. Cook 2005-10-02 18:44:37 Re: scoring differences between bitmasks
Previous Message Samik Raychaudhuri 2005-10-02 18:08:00 Re: Portable PostgreSQL