Re: Privilege mess?
От | Christoph Moench-Tegeder |
---|---|
Тема | Re: Privilege mess? |
Дата | |
Msg-id | 20181009205603.r3pgaymxtpc2tsbw@squirrel.exwg.net обсуждение исходный текст |
Ответ на | Privilege mess? (Thiemo Kellner <thiemo@gelassene-pferde.biz>) |
Ответы |
Re: Privilege mess?
|
Список | pgsql-general |
## Thiemo Kellner (thiemo@gelassene-pferde.biz): > I installed pglogger (https://sourceforge.net/projects/pglogger/) and > try to insert into the "level" table as user "act" but it fails > claiming insufficient privileges even though insert is granted to > public (see below). What am I missing? Schema privileges. > ERROR: permission denied for schema logger > LINE 1: insert into logger.LEVEL ( It says "permission denied for schema", so this is not about table privileges (GRANT INSERT/UPDATE/... ON TABLE ...), but about schema provileges. I'd guess you miss USAGE on schema logger. See https://www.postgresql.org/docs/current/static/sql-grant.html AFAIK those privileges are not found in information_schema, you'll have to use pg_catalog for that. Regards, Christoph -- Spare Space.
В списке pgsql-general по дате отправления: