Re: How to intelligently work with views that depend on other views

From: Melvin Davidson <melvin6925(at)gmail(dot)com>
To: "W(dot) Matthew Wilson" <matt(at)tplus1(dot)com>
Cc: pgsql-general <pgsql-general(at)postgresql(dot)org>
Subject: Re: How to intelligently work with views that depend on other views
Date: 2015-08-06 22:50:41
Message-ID: CANu8FiwDmbapCc9VYiECKMtjQFX5OVN0DbLp-WU2ndUiVGC40w@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

The best solution, IMHO, is don't create views that depend on other views.
Although, it makes it easier in some cases, you pay the price in
maintenance, as you have already found out. In addition, there is also the
security problem that comes into play. EG: a user is allowed access to view
c, but should not be allowed to see columns of table 1, which
are referenced by view a.

Much better to just make each view a stand alone.

On Thu, Aug 6, 2015 at 4:44 PM, W. Matthew Wilson <matt(at)tplus1(dot)com> wrote:

> I have a bunch of views, and some views use data from other views.
>
> For example, view A might get used by view B and view B gets used by view
> C.
>
> Several times now, as I got further into the project, I've changed how
> I make some views and I've had to redefine not just that view, but all
> the ones that depend on it.
>
> This is getting frustrating! When I want to change how I make view A,
> I have to drop view A cascade, and then view B and view C are dropped.
>
> Then I have to remember to re-create B and C after I rewrite A.
>
> There's likely a better solution...
>
> What is it?
>
> GO POSTGRESQL!
>
>
> --
> W. Matthew Wilson
> matt(at)tplus1(dot)com
> http://tplus1.com
>
>
> --
> Sent via pgsql-general mailing list (pgsql-general(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-general
>

--
*Melvin Davidson*
I reserve the right to fantasize. Whether or not you
wish to share my fantasy is entirely up to you.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Sophia Wright 2015-08-06 23:24:24 Re: Strange deadlock in foreign key check
Previous Message Adrian Klaver 2015-08-06 22:49:28 Re: How to intelligently work with views that depend on other views