Search notes:

Oracle: DBMS_SYSTEM.READ_EV

Get level of events, can be used to check which events are set.
alter session set events '10046 trace name context forever, level 12';
alter session set events '10051 trace name context forever, level 1';
alter session set events '10053 trace name context forever';

--
-- Note, neither 10046 nor 10053 is reported...
--
declare
  lvl number;
begin

    for ev in 10000 .. 10999 loop
        sys.dbms_system.read_ev (ev, lvl);

        if lvl > 0 then
           dbms_output.put_line ('Event ' || ev || ' is set to level ' || lvl);
        end if;

    end loop;
end;
/
Github repository Oracle-Patterns, path: /Installed/dbms/system/read_ev.sql

See also

dbms_system

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...', 1758207401, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/packages/dbms/system/api/read_ev/index(61): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78