这个“权限赋予”的过程只有打开审计才能发现的;一个用户拥有什么权限可以从以下语句获得:select * from dictionary
where table_name like 'DBA%PRIVS%'select * from DBA_SYS_PRIVS 
where grantee='your_owner'select * from DBA_ROLE_PRIVS
where grantee='your_owner'/** 这个或许可以得到你想要得信息:-) **/
select * from DBA_TAB_PRIVS
where grantee='your_owner'