DBA Hub

📋Steps in this guide1/1

Enable pure unified auditing 12c

-- False means mixed auditing;

oracle configurationintermediate
by OracleDba
13 views
1

Enable pure unified auditing 12c

-- False means mixed auditing; -- relink the library as mentioned

Code/Command (click line numbers to comment):

1
2
3
4
5
6
7
8
9
10
11
12
SELECT value FROM v$option WHERE parameter = 'Unified Auditing';
VALUE
-----------------
FALSE
shutdown immediate;
cd $ORACLE_HOME/rdbms/lib
make -f ins_rdbms.mk unaiaud_on ioracle
startup
SELECT value FROM v$option WHERE parameter = 'Unified Auditing';
VALUE
-----------------
TRUE

Comments (0)

Please to add comments

No comments yet. Be the first to comment!