Как мне запретить пользователю предоставлять права доступа к объекту, которым он владеет?
create schema sandbox;
grant usage on schema sandbox to developer;
grant create on schema sandbox to developer;
grant select on all tables in schema sandbox to developer;
grant insert on all tables in schema sandbox to developer;
grant update on all tables in schema sandbox to developer;
grant delete on all tables in schema sandbox to developer;
Но как мы можем запретить разработчику выполнять выбор гранта на таблице table для developer_2;