From: Durgamahesh Manne <maheshpostgres9@xxxxxxxxx>
Sent: Thursday, April 4, 2019 12:07 PM
To: pgsql-general@xxxxxxxxxxxxxxxxxxxx
Subject: dbuser acess privileges
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
On Thu, Apr 4, 2019 at 5:55 PM Patrick FICHE <Patrick.Fiche@xxxxxxxxxxx> wrote:
Hi Patrick Fiche as per your info
Grant access on update command is worked AFTER I DID EXECUTE THIS GRANT SELECT ON TABLE(hyd) for non superuser in 10.6
But
in 9.3 version Grant access on update command is worked EVEN I DID NOT EXECUTE THIS GRANT SELECT ON TABLE(hyd) for non superuser
Regards
Durgamahesh Manne