Search notes:

Oracle Security: audit

Traditional vs Unified Auditing

Oracle comes with two auditing variations:
Traditional auditing allows to
The so called unified audit trail stores audit records that are generated in mutliple source (compare with v$unified_audit_record_format):
Unified auditing was introduced in Oracle 12c, traditional auditing is deprecated with Oracle 21c.
v$option can be queried to determine if unified auditing is enabled:
select value from v$option where parameter = 'Unified Auditing';
In order to make transition from traditional to unified auditing easier, there is a so called mixed mode audit facility with which traditional audting can be used alongside unified audting.

See also

v$unified_audit_trail.
$ORACLE_HOME/rdbms/admin/cataudit.sql.
unified_audit_trail
def_audit_opts
Oracle security

Index