ORA-00474: SMON process terminated with error

Hi,

Sometimes you can get ” ORA-00474: SMON process terminated with error ” error.

Details of error are as follows.

Errors in file /<path>/diag/rdbms/<db_name>/<oracle_sid>/trace/<oracle_sid>_smon_<pid>.trc (incident=<NNNNN>):
ORA-00600: internal error code, arguments: [13011], [351384], [146850571], [7], [146850571], [4], [], [], [], [], [], []

ORA-00474: SMON process terminated with error
PMON (ospid: <pid>): terminating the instance due to error 474
Instance terminated by PMON, pid = <pid>

You should rebuild corrupted indexes:

SQL> ALTER INDEX SMON_SCN_TIME_TIM_IDX REBUILD ONLINE;
SQL> ALTER INDEX SMON_SCN_TIME_SCN_IDX REBUILD  ONLINE;

 

Drop index and create them again.

 

SQL> DROP INDEX "SYS"."SMON_SCN_TIME_TIM_IDX";
SQL> DROP INDEX "SYS"."SMON_SCN_TIME_SCN_IDX";
SQL> CREATE UNIQUE INDEX "SYS"."SMON_SCN_TIME_TIM_IDX" ON "SYS"."SMON_SCN_TIME" ("TIME_MP") TABLESPACE SYSAUX;
SQL> CREATE UNIQUE INDEX "SYS"."SMON_SCN_TIME_SCN_IDX" ON "SYS"."SMON_SCN_TIME" ("SCN") TABLESPACE SYSAUX;

Execute the analyze table for SMON_SCN_TIME table.

 

SQL> ANALYZE TABLE SMON_SCN_TIME VALIDATE STRUCTURE CASCADE ONLINE;

Table analyzed.

If this problem is seen during database startup and there are lots of corruption, you should set the following parameters in init.ora parameter file.

*.undo_management='MANUAL'
*._allow_resetlogs_corruption=true
*._allow_error_simulation=true

 

Then startup database again.

If database has been start up, then you can remove the above parameters again.

 

The latest solution is startup or restart instance again.

 

Do you want to learn Oracle Database for Beginners, then read the following articles.

https://ittutorial.org/oracle-database-19c-tutorials-for-beginners/

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 *