我用的是Linux,Oracle10g。我已经创建了一个名为test的用户。并向同一用户授予create session和select any dictionary权限。
我还将sysdba和sysoper角色授予相同的用户。
现在,我想要显示授予用户的所有权限和角色。我找到以下查询,但它只显示create session和select dictionary权限。
select privilege
from dba_sys_privs
where grantee='SAMPLE'
order by 1;
请帮助解决此问题。
谢谢
https://stackoverflow.com/questions/15066408
复制相似问题