我需要给当前用户(“ 用户 A”)什么样的 grant
选项/技巧来允许他更改属于另一个用户(“ 用户 C”)的对象的所有者?
更准确地说,接触表由 用户 C所有,当我执行以下查询将所有者更改为与 用户 A连接的 用户 B时:
alter table contact owner to userB;
我得到了这个错误:
ERROR: must be owner of relation contact
但是,用户 A拥有所有通常需要的权利(“ 在模式上创建”赠款选项应该足够了) :
grant select,insert,update,delete on all tables in schema public to userA;
grant select,usage,update on all sequences in schema public to userA;
grant execute on all functions in schema public to userA;
grant references, trigger on all tables in schema public to userA;
grant create on schema public to userA;
grant usage on schema public to userA;
谢谢
命令行输出:
root@server:~# psql -U userA myDatabase
myDataBase=>\dt contact
List of relations
Schema | Name | Type | Owner
-------+---------+----------+---------
public | contact | table | userC
(1 row)
myDataBase=>
myDataBase=>alter table contact owner to userB;
ERROR: must be owner of relation public.contact
myDataBase=>