Oracle ORA-01033: ORACLE initialization or shutdown in progress 錯誤sql
解決辦法:
[oracle@slave ~]$ sqlplus / as sysdbaoracle
SQL*Plus: Release 11.2.0.4.0 Production on Tue Jan 22 09:58:53 2019ide
Copyright (c) 1982, 2013, Oracle. All rights reserved.orm
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing optionsblog
SQL> shutdown normal
ORA-01109: database not openit
Database dismounted.
ORACLE instance shut down.
SQL> startup mount
ORACLE instance started.io
Total System Global Area 3691200512 bytes
Fixed Size 2258680 bytes
Variable Size 788531464 bytes
Database Buffers 2885681152 bytes
Redo Buffers 14729216 bytes
Database mounted.
SQL> alter database open;class
Database altered.im