Re: dbuser acess privileges

Поиск
Список
Период
Сортировка
От Ron
Тема Re: dbuser acess privileges
Дата
Msg-id 40af7159-a07c-1b44-377b-0fe0f35ce654@gmail.com
обсуждение исходный текст
Ответ на dbuser acess privileges  (Durgamahesh Manne <maheshpostgres9@gmail.com>)
Ответы Re: dbuser acess privileges  (Durgamahesh Manne <maheshpostgres9@gmail.com>)
Список pgsql-general
On 4/4/19 5:07 AM, Durgamahesh Manne wrote:
> hi
> Respected international pgsql team
>
> pershing=# grant INSERT on public.hyd to ravi;
> GRANT
> i have granted insert command access to non superuser(ravi)
> pershing=> insert into hyd (id,name) values('2','delhi');
> INSERT 0 1
> here data inserted
>
>
> pershing=# grant UPDATE on public.hyd to ravi;
> GRANT
> i have granted update command access to non superuser(ravi)
>
> pershing=> update public.hyd set id = 3 where name = 'hyderabad';
> ERROR:  permission denied for relation hyd
> please let me know what is the issue with update command

Are there any triggers on public.hyd which modify other tables?

-- 
Angular momentum makes the world go 'round.



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

Предыдущее
От: Durgamahesh Manne
Дата:
Сообщение: dbuser acess privileges
Следующее
От: Durgamahesh Manne
Дата:
Сообщение: Re: dbuser acess privileges