Hi
I need to list all AUDIT command issued.
I'm using the DBA_STMT_AUDIT_OPTS view, but it doesn't list all of them.
For example if a run this command:
audit create session by my_user;
the DBA_STMT_AUDIT_OPTS will list it.
But if I run this command:
audit select on my_user.my_table;
The DBA_STMT_AUDIT_OPTS list only the first.
Why the DBA_STMT_AUDIT_OPTS doesn't list the second audit command?
How can I track all the AUDIT commands issued?
Thks.
Paulo.