Search notes:

Oracle: ROLE_SYS_PRIVS

role_sys_privs lists which system privileges are assigned to the roles to which the current user has access.
select
  role,
  privilege,
  admin_option
from
  role_sys_privs
where
  role in ('CONNECT', 'RESOURCE')
order by
  role,
  privilege;
Github repository Oracle-Patterns, path: /Installed/data-dictionary/role/sys_privs/show-privs-for-specific-role.sql

See also

role_tab_privs
Oracle privileges

Index