Quantcast
Channel: Doyensys Allappsdba Blog..
Viewing all articles
Browse latest Browse all 1640

Script for check all the enabled auditing on Database

$
0
0

 Script for check all the enabled auditing on Database


--Check the parameter is enabled or disable for Audit

select name || '=' || value PARAMETER from sys.v_$parameter where name like '%audit%';

--Statement Audits Enabled on this Database

column user_name format a10

column audit_option format a40

select * from sys.dba_stmt_audit_opts;

--Privilege Audits Enabled on this Database

select * from dba_priv_audit_opts;

-- Object Audits Enabled on this Database

select (owner ||'.'|| object_name) object_name,

alt, aud, com, del, gra, ind, ins, loc, ren, sel, upd, ref, exe

from dba_obj_audit_opts

where alt != '-/-' or aud != '-/-'

or com != '-/-' or del != '-/-'

or gra != '-/-' or ind != '-/-'

or ins != '-/-' or loc != '-/-'

or ren != '-/-' or sel != '-/-'

or upd != '-/-' or ref != '-/-'

or exe != '-/-';


--Default Audits Enabled on this Database

select * from all_def_audit_opts;


Viewing all articles
Browse latest Browse all 1640

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>