Search notes:

Oracle: DBA_TRIGGERS

dba_triggers lists a database's triggers and their attributes.
The triggers' source code can be queried from dba_procedures
select
   trg.owner,
   trg.trigger_name,
    --
   trg.action_type,                            -- PL/SQL or CALL
   trg.trigger_type,                           -- [BEFORE|AFTER] STATEMENT, [BEFORE|AFTER] EACH ROW, INSTEAD, COMPOUND
   --
   trg.before_row      , trg.after_row,
   trg.before_statement, trg.after_statement,
   --
   trg.when_clause                             -- An expression that must evaluate to true in order for the trigger to fire
   --
   trg.apply_server_only,                      -- YES:  Trigger will only fire for a Replication Apply or SQL Apply process.
   trg.base_object_type,                       -- TABLE, VIEW, SCHEMA or DATABASE
   trg.column_name,
   trg.crossedition,
   trg.description,
   trg.fire_once,
   trg.instead_of_row,
   trg.referencing_names,
   trg.status,
   trg.table_name,
   trg.table_owner,
   trg.trigger_body,
   trg.triggering_event
from
   SYS.dba_triggers trg;

Finding LOGON triggers

The value of triggering_event has a trailing space for logon triggers.
select
   *
from
   dba_triggers
where
   triggering_event = 'LOGON ' -- Note the trailing space.
;

Object type

Note the 8 trailing spaces in the object type DATABASE!
select * from dba_triggers where base_object_type = 'VIEW';
select * from dba_triggers where base_object_type = 'TABLE';  
select * from dba_triggers where base_object_type = 'SCHEMA';  
select * from dba_triggers where base_object_type = 'DATABASE        ';

See also

dba_internal_triggers, dba_trigger_ordering
sys.trigger$, sys.triggerdep$

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...', 1759965396, '216.73.216.133', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/data-dictionary/triggers/index(94): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78