Search notes:

Oracle role: DBA

DBA is an Oracle maintained role. Compare this role with SYSDBA which is a system privilege.
The following query lists all system privileges and shows if the system privilege is granted to the DBA roles;
select
   spr.name,
   case when dsp.privilege is null then 'not granted' else 'granted' end granted_to_dba
from
   system_privilege_map spr left join
   dba_sys_privs        dsp on spr.name    =  dsp.privilege and
                               dsp.grantee = 'DBA'
order by
   dsp.privilege nulls last,
   spr.name;

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1758206668, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/security/roles/oracle-maintained/dba/index(44): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78