Search notes:

Oracle: DBMS_UTILITY.GET_CPU_TIME

dbms_utility.get_cpu_time returns the current CPU time as 100th's of a second from some arbitrary epoch.
Count the number of records for which a connect by clause requires approximately 9 to 10 centiseconds of CPU time:
with s as (
   select /*+ materialize */
      dbms_utility.get_cpu_time tart
   from
      dual
)
select count(*) from (
   select
      null
   from
      s connect by s.tart + 10 > dbms_utility.get_cpu_time
);

See also

Compare with dbms_utility.get_time
dbms_utility

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:51 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(51): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(66): id_of(Object(PDO), 'uri', '/notes/developm...') #2 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1758206518, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #3 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/packages/dbms/utility/api/get_cpu_time(54): insert_webrequest() #4 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 51