转自:https://www.cnblogs.com/MR-seven/p/6529623.html
错误展现如下:
sqlplus /nolog
SQL> conne /as sysdba
Connected.
SQL> shutdown abort
ORACLE instance shut down.
SQL> startup
ORACLE instance started.
Total System Global Area 1224736768 bytes
Fixed Size 2020384 bytes
Variable Size 318770144 bytes
Database Buffers 889192448 bytes
Redo Buffers 14753792 bytes
Database mounted.
ORA-01589: must use RESETLOGS or NORESETLOGS option for database open
解决步骤:
1.SQL> shutdown abort
2.SQL> startup mount
ORACLE instance started.
Total System Global Area 1224736768 bytes
Fixed Size 2020384 bytes
Variable Size 318770144 bytes
Database Buffers 889192448 bytes
Redo Buffers 14753792 bytes
Database mounted.
SQL> alter database open resetlogs
2 ;
Database altered.
SQL>
SQL>
SQL>
SQL> shutdown abort
ORACLE instance shut down.
SQL> startup
ORACLE instance started.
3.启动实例
lsnrctl start
解决ORA-01589错误

本文介绍了解决ORA-01589错误的具体步骤,该错误出现在尝试打开数据库时。解决方法包括首先关闭数据库实例,然后以挂载状态启动,最后使用ALTER DATABASE OPEN RESETLOGS命令完成数据库的打开。
689

被折叠的 条评论
为什么被折叠?



