which database users is the audit policy now active?

You wish to enable an audit policy for all database users, except sys, system, and scott. You
issue the following statements:
SQL> AUDIT POLICY ORA_DATABASE_PARAMETER EXCEPT SYS;
SQL> AUDIT POLICY ORA_DATABASE_PARAMETER EXCEPT SYSTEM;
SQL> AUDIT POLICY ORA_DATABASE_PARAMETER EXCEPT SCOTT;
For which database users is the audit policy now active?

You wish to enable an audit policy for all database users, except sys, system, and scott. You
issue the following statements:
SQL> AUDIT POLICY ORA_DATABASE_PARAMETER EXCEPT SYS;
SQL> AUDIT POLICY ORA_DATABASE_PARAMETER EXCEPT SYSTEM;
SQL> AUDIT POLICY ORA_DATABASE_PARAMETER EXCEPT SCOTT;
For which database users is the audit policy now active?

A.
all users except sys

B.
all users except scott

C.
all users except sys and scott

D.
all users except sys, system, and scott



Leave a Reply 7

Your email address will not be published. Required fields are marked *


Fedo

Fedo

That’s right – B.

Siegfried

Siegfried

B
https://docs.oracle.com/database/121/DBSEG/audit_config.htm#DBSEG459
If you run multiple AUDIT statements on the same unified audit policy but specify different EXCEPT users, then Oracle Database uses the last exception user list, not any of the users from the preceding lists. This means the effect of the earlier AUDIT POLICY … EXCEPT statements are overridden by the latest AUDIT POLICY … EXCEPT statement.

Tri

Tri

B

Tri

Tri

B again. Thanks Siegfried

https://docs.oracle.com/database/121/DBSEG/audit_config.htm#DBSEG459
If you run multiple AUDIT statements on the same unified audit policy but specify different EXCEPT users, then Oracle Database uses the last exception user list, not any of the users from the preceding lists. This means the effect of the earlier AUDIT POLICY … EXCEPT statements are overridden by the latest AUDIT POLICY … EXCEPT statement.