在Oracle中,你可以查询任何已存在的用户。但是,为了执行查询,你通常需要具有足够的权限(如DBA权限)。以下示例将假设你已经连接到了数据库,并准备查询特定用户(例如,用户名为YOUR_USER)的权限和角色。 3. 查询用户的系统权限 要查看用户的系统权限,你可以查询DBA_SYS_PRIVS视图(如果你有足够的权限)。以下是一个示例...
oracle查看用户有哪些权限和角色 select * from dba_sys_privs t where t.grantee='HR'; select * from dba_role_privs t where t.grantee='HR';
oracle查看用户有哪些权限和角色 select * from dba_sys_privs t where t.grantee='HR'; select * from dba_role_privs t where t.grantee='HR';