开发者

grant all on Owner.table_name to APPS,ABC;

开发者 https://www.devze.com 2023-01-19 11:45 出处:网络
Hi I was trying to execute grant all on Owner.table_name to APPS,ABC; but it is giving 开发者_开发知识库an error that grant privileges not provided.

Hi I was trying to execute grant all on Owner.table_name to APPS,ABC; but it is giving 开发者_开发知识库an error that grant privileges not provided. Please let me know how can i get and what is the reason.


You need Owner to: GRANT ANY PRIVILEGE TO You;

You will see that you do not have it by running:

select * from system_privilege_map
where name like '%PRIV%';
0

精彩评论

暂无评论...
验证码 换一张
取 消