Search notes:

Oracle: V$SYSTEM_EVENT

v$system_event summarizes the total wait times since the instance started up, broken up for each event.
select
   sev.event,
   sev.total_timeouts,
   total_timeouts_fg,
   round(sev.time_waited_micro_fg / 1000 / 1000 / 24 / 60 / 60, 1) waited_hrs_fg,
   round(sev.time_waited_micro    / 1000 / 1000 / 24 / 60 / 60, 1) waited_hrs,
-- round(sev.time_waited          / 100         / 24 / 60 / 60, 1) waited_hrs,
-- round(sev.time_waited_fg       / 100         / 24 / 60 / 60, 1) waited_fg_hrs,
   round(sev.average_wait_fg      / 100         / 24 / 60 / 60, 1) avg_wait_fg_hrs,
   round(sev.average_wait         / 100         / 24 / 60 / 60, 1) avg_wait_hrs,
   sev.total_waits,
   sev.total_waits_fg,
   sev.wait_class
from
   v$system_event  sev
where
   sev.wait_class not in ('Idle')
order by
   sev.time_waited_micro_fg desc;

See also

The Oracle Dynamic Performance Views

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...', 1788517531, '216.73.217.21', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/dynamic-performance-views/system/event/index(60): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78