...
The above command will enable the Unified Auditing on the DB.
Restart all the Oracle Services.
Code Block sqlplus / as sysdba startup mount exit
Start the listener service.
Code Block lsnrctl start
Now again login into Oracle
Code Block sqlplus / as sysdba
Run the below Query.
Code Block SQL> ALTER DATABASE OPEN;
Now run the Query.
Code Block SQL> select * from vsoption where PARAMETER = 'Unified Auditing'; PARAMETER VALUE CON ID Unified Auditing. TRUE
Now the Unified auditing is enabled.
To Enable Unified_Auditing on DB.
To enable Unified Auditing on DB please follow Step 13 to Step 23 under section Enable Unified_Auditing on Linux Syslog
...