Re: Relation does not exist problem

Поиск
Список
Период
Сортировка
От Oeschey, Lars (I/EK-142, extern)
Тема Re: Relation does not exist problem
Дата
Msg-id 17A09E9509BB354E95C2FEE5102B0F5F0131562A@audiinsx0036.audi.vwg
обсуждение исходный текст
Ответ на Re: Relation does not exist problem  ("Robert Wimmer" <seppwimmer@hotmail.com>)
Список pgsql-novice
> you dont have to grant the schema usage to the user and the
> group. if you
> grant it to the group, its granted to the groupmembers
> implicit. if you
> select the schema in pgadmin you should see something like
>
> -- Schema: "entry"
>
> -- DROP SCHEMA entry;
>
> CREATE SCHEMA entry
>   AUTHORIZATION postgres;
> GRANT ALL ON SCHEMA entry TO postgres;
> GRANT USAGE ON SCHEMA entry TO GROUP contact_user_group;

I found the problem. Starting with postgreSQL 8, the rights for users
have to be inherited from the group. So that a user inherits the rights
from the group where it is member, it has to have the flag INHERIT set
(standard when generating a user is NOINHERIT)

Lars

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

Предыдущее
От: "Robert Wimmer"
Дата:
Сообщение: Re: Relation does not exist problem
Следующее
От: "A. Kretschmer"
Дата:
Сообщение: Re: [GENERAL] ON INSERT => execute AWK/SH/EXE?