Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> auditing actions
Can you join aud$ and audit_actions to pull useful information?
select count(*), a.action#, aa.name, a.obj$name
from sys.aud$ a, audit_actions aa
where a.action# = aa.action
group by a.action#, aa.name, a.obj$name
/
Is this the correct join for sys.aud$?
Is this what most people do to pull then number of actions (i.e. select ,
update, ..)
from the aud$ table with name value and object (obj$name)?
thanks.
-- http://www.freelists.org/webpage/oracle-lReceived on Mon Apr 16 2007 - 12:57:33 CDT