I know using Oracle Database Vault one can set realm to restrict this
but I do
not have Data Vault, just looking to audit this using Oracle’s
database auditing.
My organization also has Oracle Audit Vault, but Database Auditing
Events have to be set in database
first for collection agent to pass this information to Oracle Audit
Vault server.
Thanks a lot.
You can't audit the entire schema with one statement. Something like
select 'audit all on '||owner||'.'||table_name||';'
from dba_tables
where owner='OWNER';
would create a SQL script that would do the trick. I's called "SQL
generating SQL" and is the oldest trick in the book.