Skip to content
July 3, 2010 / doganay

AUDIT CLONING

, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Hi,

If you audit a user on some actions and want to audit another user in just like the same way, but do not want to waste your time, you can use this query to generate your audit script:

select ‘audit ‘||audit_option||’ by ‘||’YOUR_TARGET_USER’||’ ‘||success||’;’
from dba_stmt_audit_opts where user_name=’YOUR_SOURCE_USER’
union
select ‘audit ‘||PRIVILEGE||’ by ‘||’YOUR_TARGET_USER’||’ ‘||success||’;’
from dba_priv_audit_opts where user_name=’YOUR_SOURCE_USER’;

try and pray:)

Leave a comment