標籤:style color 使用 檔案 ar 資料 art div sp
oracle啟動,提示“LRM-00109: could not open parameter file”
LRM-00109: could not open parameter file ‘/home/oracle/oracle10g/dbs/initoms
今天串連Oracle資料庫的時候,探索資料沒啟動,利用startup命令,出現錯誤提示如下:
SQL> startup
ORA-01078: failure in processing system parameters
LRM-00109: could not open parameter file ‘/oracle/10g/dbs/init10g.ora‘
按提示尋找相關目錄的檔案,果然不存在。
到網上查了一下資料。得到如果有用資訊:是因為在oracle10g中,oracle預設將使用spfile啟動資料庫,如果spfile不存在,則就會出現上述錯誤。
解決方案:
將$ORACLE_BASE/admin/你的資料庫名稱/pfile/init.ora.628201264542(這串數字未必一樣)
copy到$ORACLE_HOME/dbs目錄下,並改名為你的資料庫執行個體名即可。
例如:上面提示找不到init10g.ora這個檔案,就改成 init10g.ora
參考命令:
export $ORACLE_HOME --輸出使用中的環境變數Home
cat /home/oracle/.bash_profile --或.bashrc檔案,務必確定$ORACLE_HOME的值與當前使用的一致
(我就遇到過不一致的)
mv $ORACLE_BASE/admin/orcl/pfile/init.ora.628201264542 /oracle/10g/dbs/init10g.ora
--複製檔案到指定目錄
sqlplus "/as sysdba"
startup
搞定!
oracle啟動,提示“LRM-00109: could not open parameter file”