We are running into tablespace issues as a result of a large SYS.AUD$ table. Upon further investigation, we identified that 99% of the items in this table were SELECT actions
SELECT COUNT(*) from SYS.AUD$ where ACTION# = 3;
334698880
SELECT COUNT(*) FROM SYS.AUD$;
335176012
However, we cannot find WHY these are being logged.
- No system-wide auditing privileges set for SELECT (DBA_PRIV_AUDIT_OPTS)
- No system-wide statement options set for SELECT (DBA_STMT_AUDIT_OPTS)
- No specific objects being tracked (DBA_OBJ_AUDIT_OPTS)
Somehow these settings are being overridden. Any suggestions with regards to places to look?
We have resolved the issue - the log-stamps allowed us to correlate the issue with a scheduled job:
The Auditing Section of the Oracle 11g Security Guide was extremely useful in this investigation Oracle 11g Security Guide