...
The following SQL statement enables auditing in the system database.
Code Block |
---|
ALTER SYSTEM ALTER CONFIGURATION ('nameserver.ini', 'system') set ('auditing configuration', 'global_auditing_state') = 'true'; |
The next statement sets the audit target to database table syslog (the default is SYSLOGPROTOCOL).
Code Block |
---|
ALTER SYSTEM ALTER CONFIGURATION ('nameserver.ini', 'system') set ('auditing configuration', 'default_audit_trail_type') = ' |
...
SYSLOGPROTOCOL'; |
If auditing is active, certain actions are always audited and are therefore not available for inclusion in user-defined audit polices. These actions are audited by the internal audit policy MandatoryAuditPolicy.
...