|
Re: Is it possible to get a list of tables on which Audits are enabled [message #582557 is a reply to message #582554] |
Fri, 19 April 2013 07:31 |
|
Littlefoot
Messages: 21823 Registered: June 2005 Location: Croatia, Europe
|
Senior Member Account Moderator |
|
|
Have a look at dictionary.
SQL> select * from dictionary where upper(comments) like '%AUDIT%';
TABLE_NAME COMMENTS
------------------------------ ------------------------------------------------------------
USER_AUDIT_SESSION All audit trail records concerning CONNECT and DISCONNECT
USER_AUDIT_STATEMENT Audit trail records concerning grant, revoke, audit, noaudi
t and alter system
USER_AUDIT_OBJECT Audit trail records for statements concerning objects, speci
fically: table, cluster, view, index, sequence, [public] da
tabase link, [public] synonym, procedure, trigger, rollback
segment, tablespace, role, user
USER_AUDIT_TRAIL Audit trail entries relevant to the user
USER_OBJ_AUDIT_OPTS Auditing options for user's own tables and views with atleas
t one option set
ALL_DEF_AUDIT_OPTS Auditing options for newly created objects
ALL_AUDIT_POLICIES All fine grained auditing policies in the database
ALL_AUDIT_POLICY_COLUMNS All fine grained auditing policy columns in the database
USER_AUDIT_POLICIES All fine grained auditing policies for objects in user schem
a
USER_AUDIT_POLICY_COLUMNS Users fine grained auditing policy columns in the database
AUDIT_ACTIONS Description table for audit trail action type codes. Maps a
ction type numbers to action type names
11 rows selected.
SQL>
Though, why don't you take some time and read the documentation?
|
|
|
|