Re: Role information table name

Поиск
Список
Период
Сортировка
От Stephen Frost
Тема Re: Role information table name
Дата
Msg-id 20200708175402.GL3125@tamriel.snowman.net
обсуждение исходный текст
Ответ на Role information table name  (Gaurav Tomar <gauravtomar14@gmail.com>)
Список pgsql-sql
Greetings,

* Gaurav Tomar (gauravtomar14@gmail.com) wrote:
> Simple question -- in which table postgres store the role
> privilege information.
>
>  CREATE ROLE postgres WITH
>   LOGIN
>   SUPERUSER
>   INHERIT
>   CREATEDB
>   CREATEROLE
>   REPLICATION;
>
> in which table I can find the above information.

While this is in pg_authid, if that's all the info you want to find out,
you should probably be getting it from pg_roles (which is a view over
pg_authid), since you need to be GRANT'd access to pg_authid unless
you're a superuser.

Thanks,

Stephen

Вложения

В списке pgsql-sql по дате отправления:

Предыдущее
От: "David G. Johnston"
Дата:
Сообщение: Re: Role information table name
Следующее
От: J Lumby
Дата:
Сообщение: foreign key referencing inheritance parent