Re: Related tables to a view - Mailing list pgsql-sql

From Jan Meyland Andersen
Subject Re: Related tables to a view
Date
Msg-id 1255.62.66.218.59.1167235132.squirrel@mail.agile.dk
Whole thread Raw
In response to Re: Related tables to a view  ("Jim Buttafuoco" <jim@contactbda.com>)
List pgsql-sql
> Try this query
>
>
> select a.relname as base,a.relkind
> from
> pg_class a
> join pg_depend d on (a.oid = d.refobjid)
> join pg_class c on (d.classid = c.oid)
> join pg_rewrite r on (objid = r.oid)
> join pg_class v on (ev_class = v.oid)
> where a.relkind in('r', 'v')
> and a.relname <> v.relname
> and v.relname='YOUR VIEW NAME HERE'
> order by 1
>

Thanks a lot. That is exactly what I need.

Regards

Jan



pgsql-sql by date:

Previous
From: "Jim Buttafuoco"
Date:
Subject: Re: Related tables to a view
Next
From: "Kashmira Patel \(kupatel\)"
Date:
Subject: Unable to drop table, error mentions "reltriggers"