ORA-32004: obsolete and/or deprecated parameter(s) specified

啓動自動歸檔模式,通過設置 log_archive_start 並不會起到自動歸檔的作用反而啓動時會報出ORA- 32004: obsolete and/or deprecated parameter(s) specified,操作如下(測試數據庫已是自動歸 檔模式)該方式適合9i數據庫開通數據庫歸檔和自動歸檔模式。

查看錯誤代碼相關信息:

 

  1. SQL> host oerr ora 12154 
  2.  
  3.  32004, 00000, "obsolete and/or deprecated parameter(s) specified" 
  4. // *Cause:  One or more obsolete and/or parameters were specified in 
  5. //          the SPFILE or the PFILE on the side. 
  6. // *Action: See alert log for a list of parameters that are obsolete. 
  7. //          or deprecated. Remove them from the SPFILE or the server 
  8. //          side PFILE. 
  9. SQL> 
告訴我們去 alert log 中查看信息。查找...

Deprecated system parameters with specified values:

log_archive_start

End of deprecated system parameter listing

  1. SQL>ALTER SYSTEM RESET log_archive_start SCOPE=SPFILE SID='*';  


查看一下 10g 中都有那些參數是 deprecated 的:

 

  1. SQL> SELECT NAME, description 
  2. FROM v$parameter 
  3. WHERE isdeprecated = 'TRUE';

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章