Hi everyone, and thanks a lot ,
> PostgreSQL access permissions are not yet as extensive as the full SQL
> spec requires.
> 'w' includes UPDATE and DELETE;
> there is no finer-grained permission available.
if i do on (PostgreSQL 7.1beta4 ) :
GRANT UPDATE ON tabl TO user;
user can do on tabl :
UPDATE, but also DELETE and INSERT !
my question is :
can i bypass this limitation ?