问题:启动oracle数据库的过程提出以下错误,但是数据库可以正常的startupmount
SQL> startup
ORACLE instance started.
Total System Global Area 838858176 bytes
Fixed Size 8902080 bytes
Variable Size 654311424 bytes
Database Buffers 167772160 bytes
Redo Buffers 7872512 bytes
Database mounted.
ORA-00603: ORACLE server session terminated by fatal error
ORA-01092: ORACLE instance terminated. Disconnection forced
ORA-00600: internal error code, arguments: [4194], [7], [6], [], [], [], [],
- , [], [], [], []
Process ID: 12334
Session ID: 1915 Serial number: 26750
解决过程:
尝试一:使用starup force也是一样的错误
尝试二:
1、使用conn / as sysdba进入后,用startup mount;
SQL> startup mount
ORACLE instance started.
Total System Global Area 838858176 bytes
Fixed Size 8902080 bytes
Variable Size 654311424 bytes
Database Buffers 167772160 bytes
Redo Buffers 7872512 bytes
Database mounted.
2、使用shutdown abort关闭数据库;
SQL> shutdown abort
ORACLE instance shut down.
3、退出sql后重新进入,再startup尝试;我这里县startup up,再alter database open数据库就可以正常开启。
SQL> startup mount
ORACLE instance started.
Total System Global Area 838858176 bytes
Fixed Size 8902080 bytes
Variable Size 654311424 bytes
Database Buffers 167772160 bytes
Redo Buffers 7872512 bytes
Database mounted.
SQL> alter database open;