今天在學習管理archivelog時遇到了ORA
SQL> shutdown immediate;
Database closed
Database dismounted
ORACLE instance shut down
SQL> startup
ORA
ORACLE instance started
Total System Global Area
Fixed Size
Variable Size
Database Buffers
Redo Buffers
Database mounted
Database opened
查看oracle給出的問題描述
SQL> host oerr ora
// *Cause: One or more obsolete and/or parameters were specified in
// the SPFILE or the PFILE on the server side
// *Action: See alert log for a list of parameters that are obsolete
// or deprecated
// side PFILE
去看看spfile
*
*
*
*
然後在看看alert log文件
Deprecated system parameters with specified values:
log_archive_start
End of deprecated system parameter listing
查了查資料說是oracle
SQL> alter system reset log_archive_start SCOPE=SPFILE SID=
System altered
SQL> shutdown immediate;
Database closed
Database dismounted
ORACLE instance shut down
SQL> startup
ORACLE instance started
Total System Global Area
Fixed Size
Variable Size
Database Buffers
Redo Buffers
Database mounted
Database opened
重啟後再不報ORA
查看
SQL>select name
From:http://tw.wingwit.com/Article/program/Oracle/201311/16555.html