The cause and solution for ORA-01139: RESETLOGS option only valid after an incomplete database recover error.
Anonymous Answered question 29/11/2022
The cause for this error is that Oracle can’t find the online redo log files.
Solution: Recreate the online redo log files and the steps are as follows:
- run the following command:
12
SQL> recover
database
until cancel;
Media recovery complete.
- Open your database with the OPEN RESETLOGS clause:
1
SQL>
alter
database
open
resetlogs;
meda Changed status to publish 29/11/2022