Re: Understanding Schema's

From: Carlos Mennens <carlos(dot)mennens(at)gmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Understanding Schema's
Date: 2010-12-15 00:20:37
Message-ID: AANLkTimMMW+4DCG6uvUv5DZYWqS-_RiZHjJ=Z=fOxxma@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Tue, Dec 14, 2010 at 7:17 PM, Joshua D. Drake <jd(at)commandprompt(dot)com> wrote:
> You can cross query a schema but not a database.
>
> So you can create:
>
> create table fire.foo()
> create table ice.foo()
>
> And they are isolated from each other physically and logically but you
> can query them both:
>
> SELECT fire.*, ice.* join on (id)

Why would anyone in a random scenario want to have independent
schema's to cross query? I'm just trying to see how this would be
useful in any scenario.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Bill Moran 2010-12-15 00:31:59 Re: Understanding Schema's
Previous Message Joshua D. Drake 2010-12-15 00:17:28 Re: Understanding Schema's