ORACLE 12的ORA-01033问题操作过程

[oracle@localhost ~]$ sqlplus / as sysdba

SQL*Plus: Release 12.2.0.1.0 Production on 星期五 11月 29 18:23:54 2019

Copyright (c) 1982, 2016, Oracle.  All rights reserved.


连接到: 
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production

SQL> shutdown abort
ORACLE 例程已经关闭。
SQL> startup mount
ORACLE 例程已经启动。

Total System Global Area 4.0400E+10 bytes
Fixed Size		   30036832 bytes
Variable Size		 1.0603E+10 bytes
Database Buffers	 2.9662E+10 bytes
Redo Buffers		  104177664 bytes
数据库装载完毕。
SQL> alter database open;

数据库已更改。

SQL> exit
从 Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production 断开
[oracle@localhost ~]$ sqlplus web_user/web_user@21026BDB

SQL*Plus: Release 12.2.0.1.0 Production on 星期五 11月 29 18:25:28 2019

Copyright (c) 1982, 2016, Oracle.  All rights reserved.

ERROR:
ORA-01033: ORACLE initialization or shutdown in progress
进程 ID: 0
会话 ID: 0 序列号: 0


请输入用户名:  ^[[A
输入口令: 
[oracle@localhost ~]$ oerr ora 01033
01033, 00000, "ORACLE initialization or shutdown in progress"
// *Cause: An attempt was made to log on while Oracle is being started up
//         or shutdown.
// *Action: Wait a few minutes. Then retry the operation.
           
[oracle@localhost ~]$ sqlplus / as sysdba

SQL*Plus: Release 12.2.0.1.0 Production on 星期五 11月 29 18:28:44 2019

Copyright (c) 1982, 2016, Oracle.  All rights reserved.


连接到: 
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production

SQL> show pdbs;

    CON_ID CON_NAME			  OPEN MODE  RESTRICTED
---------- ------------------------------ ---------- ----------
	 2 PDB$SEED			  READ ONLY  NO
	 3 GODDB			  MOUNTED
SQL> alter pluggable database GODDB open;

插接式数据库已变更。

SQL> show pdbs;

    CON_ID CON_NAME			  OPEN MODE  RESTRICTED
---------- ------------------------------ ---------- ----------
	 2 PDB$SEED			  READ ONLY  NO
	 3 GODDB			  READ WRITE NO
SQL> 

操作之后验证:

[oracle@localhost ~]$ sqlplus web_user/web_user@21026BDB

SQL*Plus: Release 12.2.0.1.0 Production on 星期五 11月 29 18:52:29 2019

Copyright (c) 1982, 2016, Oracle.  All rights reserved.

上次成功登录时间: 星期五 11月 29 2019 18:40:57 +08:00

连接到: 
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production

SQL> 
发布了592 篇原创文章 · 获赞 221 · 访问量 130万+

猜你喜欢

转载自blog.csdn.net/henni_719/article/details/103316399