標籤:提示 oracle 啟動資料庫 預設 span nal bsp 9.png blog
一、使用環境
作業系統:CentOS release 6.2 (Final)
資料庫:Oracle 12g
資料庫主目錄:/ora12/product/product/12.1.0/db_1
二、問題描述
用sys使用者登入sqlplus後,用startup命令啟動Oracle時提示:
ORA-01078:failure in processing system parameters
LRM-00109: could not open parameter file ‘/ora12/product/product/12.1.0/db_1/dbs/initora12.ora‘
三、錯誤原因
在oracle9i、10g、11g最近幾個版本中,資料庫預設使用spfile啟動資料庫,如果spfile不存在,則就會出現上述錯誤。
四、解決方案
方法一:
1.用find /ora12 -name pfile命令尋找pfile檔案的位置,/ora12/product/admin/cvte63/pfile 進入該檔案夾,查看檔案
2.將$ORACLE_BASE/admin/cvte63/pfile目錄下的init.ora.6420171848 形式的檔案copy 到$ORACLE_HOME/dbs目錄下命名為initora12.ora即可。
(註:initora12.ora中的orcl12為你的執行個體名 ORACLE_SID,這裡我的SID為:ora12)
方法二:
將$ORACLE_HOME/dbs目錄下spflieorcl.ora改名為spfilecenter.ora即可。(註:spfilecenter.ora中的ora12為環境變數中設定的SID,我的是ora12)
oracle使用者登入 sqlplus "/as sysdba"
SQL> startup
啟動Oracle時提示:ORA-01078:failure in processing system parameters