dbuser acess privileges

Поиск
Список
Период
Сортировка
От Durgamahesh Manne
Тема dbuser acess privileges
Дата
Msg-id CAJCZkoJo_e8yQCowniedv3Tw5MqZ55NNfumSSd=bWKeE+Vrjuw@mail.gmail.com
обсуждение исходный текст
Ответы Re: dbuser acess privileges  (Ron <ronljohnsonjr@gmail.com>)
RE: dbuser acess privileges  (Patrick FICHE <Patrick.Fiche@aqsacom.com>)
Список pgsql-general
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



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

Предыдущее
От: david moloney
Дата:
Сообщение: Re: PostgreSQL Windows 2019 support ?
Следующее
От: Ron
Дата:
Сообщение: Re: dbuser acess privileges