From: | Luis Magaa <joe666(at)gnovus(dot)com> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | RE: Permissions on Tables |
Date: | 2000-10-31 06:20:47 |
Message-ID: | SAK.2000.10.31.joijhhsr@thor |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Thanks, that was the solution
--
Luis Magaña
Gnovus Networks & Software
www.gnovus.com
Tel. +52 (7) 4422425
joe666(at)gnovus(dot)com
Original message from: "Edmar Wiggers"
>Try using adding -E option to psql. It will show you the queries used to
>answer \d* (and other) commands.
>
>psql -E test
>test=> \dp
>********* QUERY *********
>SELECT relname as "Relation",
> relacl as "Access permissions"
>FROM pg_class
>WHERE ( relkind = 'r' OR relkind = 'S') AND
> relname !~ '^pg_'
>ORDER BY relname
>*************************
>...
>
>> I'm writing a interface that should manage users groups and
>> permissions on tables in a database. Have almost completed users
>> and groups handling, but now I'm facing a problem... How can I
>> find out what
>> are the permissions on a table without using \dp ?. This should
>> be done through a SELECT or something similar. Thanks for any
>> help gentlemans.
>
>Take care,
>
>Edmar
>
>
From | Date | Subject | |
---|---|---|---|
Next Message | hubert depesz lubaczewski | 2000-10-31 07:17:50 | how to get rid of "NOTICE"'s in psql? |
Previous Message | Edmar Wiggers | 2000-10-31 05:54:10 | RE: Permissions on Tables |