dbuser acess privileges - Mailing list pgsql-general

From Durgamahesh Manne
Subject dbuser acess privileges
Date
Msg-id CAJCZkoJo_e8yQCowniedv3Tw5MqZ55NNfumSSd=bWKeE+Vrjuw@mail.gmail.com
Whole thread Raw
Responses Re: dbuser acess privileges  (Ron <ronljohnsonjr@gmail.com>)
RE: dbuser acess privileges  (Patrick FICHE <Patrick.Fiche@aqsacom.com>)
List 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 by date:

Previous
From: david moloney
Date:
Subject: Re: PostgreSQL Windows 2019 support ?
Next
From: Ron
Date:
Subject: Re: dbuser acess privileges