grant all on Owner.table_name to APPS,ABC;
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%';
精彩评论