Re: Querying the same column and table across schemas

From: "John A(dot) Sullivan III" <jsullivan(at)opensourcedevel(dot)com>
To: "Daniel J(dot) Summers" <daniel(dot)lists(at)djs-consulting(dot)com>
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: Querying the same column and table across schemas
Date: 2010-03-05 20:44:49
Message-ID: 1267821889.15754.49.camel@Family.pacifera.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On Fri, 2010-03-05 at 19:59 +0000, Daniel J. Summers wrote:
> On 03/05/2010 07:44 PM, John A. Sullivan III wrote:
> > I'm trying to avoid making a thousand call like
> >
> > select user1.session_id from user1.sessions;
> >
> > when I could do it in a single query especially since the database is
> > remote and secured with SSL.
> >
> CREATE VIEW all_sessions AS
> SELECT user1.session_id, 1 as user_number
> FROM user1.sessions
> UNION
> SELECT user2.session_id, 2 AS user_number
> FROM user2.sessions
> UNION
> ...more schemas...
>
> Then, "SELECT * FROM all_sessions" would show you each session ID (and,
> with the user_number field, what user - you could use a string literal
> there too). Of course, the user creating and running this would need
> SELECT privileges on each schema's "sessions" table.
>
>
> Daniel
>
That sounds quite reasonable. I'm guessing that a view is superior to
creating a new schema with tables derived from selects from all the
schemas because it would be less overhead and dynamic, i.e., I only
create the view once and it always has the most current data. Is that
correct?

As we add new schemas, is there an easy way to update the view? That was
not obvious to me looking at the documentation for ALTER VIEW and CREATE
OR REPLACE VIEW seems to be sensitive to ensuring the new view is
identical to the old except for appends. It would be nice if we could
simply append
UNION SELECT * from user3.sessions
to the view. Thanks very, very much - John

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Bob Lunney 2010-03-05 22:13:51 Re: Querying the same column and table across schemas
Previous Message Daniel J. Summers 2010-03-05 19:59:00 Re: Querying the same column and table across schemas