【发布时间】:2011-01-25 23:42:47
【问题描述】:
我有一个很久以前创建的本土 Oracle 角色:
create role MyRole;
它已被授予从某些表和视图中选择、插入、更新和删除的能力。
grant select on sometable to MyRole;
grant insert on sometable to MyRole;
grant select on someothertable to MyRole;
-- etc.
我现在如何枚举授予该角色的特定权限列表?我有兴趣发现特定表以及此角色对每个表的权限。我怎样才能恢复这些信息?
【问题讨论】: