ORA-46258: cleanup not initialized for the audit trail

Hi,

Sometimes You can get ” ORA-46258: cleanup not initialized for the audit trail ” error.

 

Details of error are as follows.

ORA-12012 : auto execute of job 546402
ORA-46258: Cleanup not initialized for the audit trail
ORA-06512: SYS.DBMS_AUDIT_MGMT

 

 

 

You can read the following post to learn How to Delete or Purge Audit Trail Table and Records ( Purge aud$ table ) 

https://ittutorial.org/ora-46258-purge-aud-table-delete-or-purge-audit-trail-table-and-records-in-oracle-database-ora-46258-cleanup-not-initialized-for-the-audit-trail/ 

 

 

This error is related to a scheduled DBMS_AUDIT_MGMT job named PURGE_ALL_AUDIT_TRAILS, owned by SYS.
This job is not customized; it is created by default at the time the database is created.

SELECT JOB_NAME, JOB_STATUS, AUDIT_TRAIL from DBA_AUDIT_MGMT_CLEANUP_JOBS;

job_name                                job_status            audit_trail
--------------------                     ---------            --------------
PURGE_ALL_AUDIT_TRAILS                     ENABLED             ALL_AUDIT_TRAILS

 

This error is thrown when DBMS_AUDIT_MGMT.INIT_CLEANUP has not been executed.
However, if the DB audit trail is not being used (AUDIT_TRAIL = NONE, and/or SYS.AUD$ has no rows), then the job is not necessary.

 

 

To solve this error, If database auditing is not in use, disable the job, as it is not needed.

Firstly Check the job owner:

SELECT JOB_NAME, STATE,owner from dba_scheduler_jobs;

Then If the owner is SYS, connect AS SYSDBA, then disable this job as follows.

exec dbms_scheduler.disable('PURGE_ALL_AUDIT_TRAILS');

Do you want to learn more details about RMAN, then read the following articles.

https://ittutorial.org/rman-backup-restore-and-recovery-tutorials-for-beginners-in-the-oracle-database/

 

About Mehmet Salih Deveci

I am Founder of SysDBASoft IT and IT Tutorial and Certified Expert about Oracle & SQL Server database, Goldengate, Exadata Machine, Oracle Database Appliance administrator with 10+years experience.I have OCA, OCP, OCE RAC Expert Certificates I have worked 100+ Banking, Insurance, Finance, Telco and etc. clients as a Consultant, Insource or Outsource.I have done 200+ Operations in this clients such as Exadata Installation & PoC & Migration & Upgrade, Oracle & SQL Server Database Upgrade, Oracle RAC Installation, SQL Server AlwaysOn Installation, Database Migration, Disaster Recovery, Backup Restore, Performance Tuning, Periodic Healthchecks.I have done 2000+ Table replication with Goldengate or SQL Server Replication tool for DWH Databases in many clients.If you need Oracle DBA, SQL Server DBA, APPS DBA,  Exadata, Goldengate, EBS Consultancy and Training you can send my email adress [email protected].-                                                                                                                                                                                                                                                 -Oracle DBA, SQL Server DBA, APPS DBA,  Exadata, Goldengate, EBS ve linux Danışmanlık ve Eğitim için  [email protected] a mail atabilirsiniz.

Leave a Reply

Your email address will not be published. Required fields are marked *