ORA-00322: log string of thread string is not current copy.

I got ” ORA-00322: log string of thread string is not current copy. ”  error in Oracle database.

 

ORA-00322: log string of thread string is not current copy

 

Details of error are as follows.

ORA-00322: log string of thread string is not current copy.

Cause: Check of log file header at database open found that an online log appears to be an
 incorrectly restored backup.

Action: Restore correct file or reset logs

 

 

log string of thread string is not current copy

This ORA-00322 is related with the Check of log file header at database open found that an online log appears to be an incorrectly restored backup.

Restore correct file or reset logs.

 

When attempting to start an Oracle XE database where P6 is located, P6 cannot connect to the database and the database alias configuration alias fails with:

ERROR
ORA-12514 TNS:listener does not currently know of service requested in connect
descriptor

Looking in the Oracle alert_<sid>.log file, the following errors are generated:

ORA-00322: log 2 of thread 1 is not current copy
ORA-00312: online log 2 of thread 1 is: 'x'

– x is the location and name of the online redo log in question

 

 

This issue is caused due to a corrupted online redo log that would not allow the database to open.

When an Oracle database is started, one of the startup checks is that all of the critical files for the database are online and are consistent. If there’s a corrupted online redo log file, this file will not be consistent with the rest of the database and cause these errors at startup.

 

 

To resolve this issue, follow one of the two following steps:

1 – If you have a current/recent backup of the Oracle database, restore the database to a point in time prior to the redo log being corrupted. You can check the alert_<sid>.log file for the first occurrence of the ORA-322 and ORA-312 errors to give you a time frame that you need to restore to.

 

Consult your DBA that backed up your database to have them restore the database to that point in time. By default, Oracle databases are not set up to backup. If you do not have the option of restoring the database, then follow option 2:

2 – Clear the corrupted online redo log from the database.
– Find the earliest occurrence of the following errors in the alert_<sid>.log


  ORA-00322: log 2 of thread 1 is not current copy
  ORA-00312: online log 2 of thread 1 is: 'x'
       - 'x' is the location and name of the corrupted redo log

 

– Go to a command prompt and type the following:

  - sqlplus / as sysdba
  - startup mount;
  - alter database clear logfile 'x';
       - replace 'x' with the information from the ORA-312 error above. For example: alter database clear logfile 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\ORASID\redo02.log';
  - alter database open;

At this point the database should open and you can connect to it via the P6 client.

 

 

 

 

 

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

Oracle Tutorial | Oracle Database Tutorials for Beginners ( Junior Oracle DBA )

 

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 *