Search notes:

DBA_COMMON_AUDIT_TRAIL

dba_common_audit_trails shows both, the Standard and Fine Grained audit trail entries.
select /*+ parallel(16) */
-- audit_type,
-- session_id,
-- proxy_sessionid,
-- statementid,
-- entryid,
   extended_timestamp,
-- global_uid,
   db_user,
   priv_used,          -- System privilege used to execute the action
   sql_text,
   client_id,
-- econtext_id,
-- ext_name,
   os_user,
   userhost,
-- os_process,
-- terminal,
   instance_number,
   object_schema,
   object_name,
-- policy_name,
-- new_owner,
-- new_name,
-- action,
   statement_type,
   audit_option,
-- transactionid,
   returncode,
-- scn,
   comment_text,
   sql_bind,
   obj_privilege,      -- Object privileges granted or revoked by a grant or revoke stmt.
   sys_privilege,      -- System privileges granted or revoked by a grant or revoke stmt.
   admin_option,
   os_privilege,
   grantee,
   ses_actions,
-- logoff_time,
-- logoff_lread,       -- Number of logical reads for the session 
-- logoff_pread,       -- Number of physical reads for the session
-- logoff_lwrite,      -- Number of logical writes for the session
-- logoff_dlock,       -- Number of deadlocks detected during the session
-- session_cpu,        -- Amount of CPU time used by the Oracle session
-- obj_edition_name,
   dbid
from
  dba_common_audit_trail
where
  os_user = 'rnyffenegger'
order by
  extended_timestamp desc;
Github repository Oracle-Patterns, path: /Installed/data-dictionary/common_audit_trail/show.sql

Logon, logoff

select /*+ parallel(16) */
  logon__.os_user,
  logon__.db_user,
  logon__.extended_timestamp,
  logoff_.extended_timestamp,
  logoff_.statement_type,     -- LOGOFF, LOGOFF BY CLEANUP
  logon__.session_id
from
  dba_common_audit_trail logon__                                                      left join
  dba_common_audit_trail logoff_ on logon__.session_id     =  logoff_.session_id and
                                    logoff_.statement_type like 'LOGOFF%'
where
  logon__.os_user        = 'rnyffenegger' and
  logon__.statement_type = 'LOGON'
order by
  logon__.extended_timestamp desc;
Github repository Oracle-Patterns, path: /Installed/data-dictionary/common_audit_trail/logon-logoff.sql

See also

data dictionary

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