Search notes:

Oracle: V$SESS_TIME_MODEL

v$sess_time_model reports accumulated times for various categories of waiting operations on session level.
select
  rank() over (order by sum(value) desc) rn,
  stat_name
from
  v$sess_time_model
group by
  stat_name
order by
  stat_name;
--
--  5   DB CPU
--  2   DB time
-- 16   Java execution elapsed time
-- 10   PL/SQL compilation elapsed time
--  9   PL/SQL execution elapsed time
-- 16   RMAN cpu time (backup/restore)
--  4   background cpu time
--  1   background elapsed time
-- 12   connection management call elapsed time
-- 16   failed parse (out of shared memory) elapsed time
-- 13   failed parse elapsed time
-- 11   hard parse (bind mismatch) elapsed time
--  8   hard parse (sharing criteria) elapsed time
--  7   hard parse elapsed time
-- 16   inbound PL/SQL rpc elapsed time
--  6   parse time elapsed
-- 14   repeated bind elapsed time
-- 15   sequence load elapsed time
--  3   sql execute elapsed time
Github repository oracle-patterns, path: /Installed/dynamic-performance-views/sess/time_model/stat_names.sql

See also

v$sys_time_model
Automatic Workload Repository
v$statistics_level
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...', 1758206133, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/dynamic-performance-views/sess/time_model/index(78): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78