今天早上將一個新的資料庫$ORACLE_SID修改成歸檔模式,修改步驟如下:
SQL> alter system set log_archive_dest_1 = 'LOCATION=/home/oracle/oradata/$ORACLE_SID/arch' scope = both;
System altered.
SQL> alter system set log_archive_start = TRUE scope = spfile;
System altered.
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup mount
ORA-32004: obsolete and/or deprecated parameter(s) specified
ORACLE instance started.
Total System Global Area 1002438656 bytes
Fixed Size 782224 bytes
Variable Size 254021744 bytes
Database Buffers 746586112 bytes
Redo Buffers 1048576 bytes
Database mounted.
SQL> alter database archivelog;
Database altered.
SQL> alter database open;
Database altered.
SQL> archive log list;
Database log mode Archive Mode
Automatic archival Enabled
Archive destination /home/oracle/oradata/$ORACLE_SID/arch
Oldest online log sequence 104
Next log sequence to archive 106
Current log sequence 106
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORA-32004: obsolete and/or deprecated parameter(s) specified
ORACLE instance started.
Total System Global Area 1002438656 bytes
Fixed Size 782224 bytes
Variable Size 254021744 bytes
Database Buffers 746586112 bytes
Redo Buffers 1048576 bytes
Database mounted.
Database opened.
2、提示有一個引數已經過期了,將其修改回預設值
SQL> alter system set log_archive_start = FALSE scope = spfile;
System altered.
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORA-32004: obsolete and/or deprecated parameter(s) specified
ORACLE instance started.
Total System Global Area 1002438656 bytes
Fixed Size 782224 bytes
Variable Size 254021744 bytes
Database Buffers 746586112 bytes
Redo Buffers 1048576 bytes
Database mounted.
Database opened.
3、修改回預設值仍然提示錯誤,從引數檔案刪除
SQL> create pfile from spfile;
File created.
[oracle@localhost dbs]$ vi init$ORACLE_SID.ora ---從pfile檔案刪除行log_archive_star
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup pfile = $ORACLE_HOME/dbs/init$ORACLE_SID.ora
ORACLE instance started.
Total System Global Area 1002438656 bytes
Fixed Size 782224 bytes
Variable Size 254021744 bytes
Database Buffers 746586112 bytes
Redo Buffers 1048576 bytes
Database mounted.
Database opened.
SQL> create spfile from pfile
2 ;
File created.
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORACLE instance started.
Total System Global Area 1002438656 bytes
Fixed Size 782224 bytes
Variable Size 254021744 bytes
Database Buffers 746586112 bytes
Redo Buffers 1048576 bytes
Database mounted.
Database opened.
SQL> select decode(count(*), 1, 'spfile', 'pfile' ) USED from v$spparameter where rownum=1 and isspecified='TRUE';
USED
------
spfile
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/51862/viewspace-180607/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 修改歸檔模式的通用步驟(非RAC 資料庫)模式資料庫
- 將資料庫修改為歸檔模式資料庫模式
- 修改資料庫的歸檔模式資料庫模式
- 修改叢集資料庫的歸檔模式資料庫模式
- oracle 修改資料庫為歸檔模式Oracle資料庫模式
- 檢視oracle資料庫是否歸檔和修改歸檔模式Oracle資料庫模式
- 檢視oracle資料庫是否歸檔和修改歸檔模式(轉)Oracle資料庫模式
- 修改資料庫歸檔模式(ARCHIVELOG/NOARCHIVELOG)資料庫模式Hive
- RAC資料庫啟用歸檔和閃回的步驟資料庫
- 修復MSSQLSERVER資料庫置疑的步驟SQLServer資料庫
- 今天早上檢查資料庫的備份日誌,發現其中一個資料庫的expdp錯誤:資料庫
- 【ARCHIVE】單機環境修改資料庫為歸檔模式Hive資料庫模式
- 將資料庫轉換為歸檔日誌模式資料庫模式
- oracle 10g rac ocfs或者asm 修改為歸檔模式操作步驟Oracle 10gASM模式
- 將RAC資料庫更改為不歸檔日誌的模式資料庫模式
- 手工建立一個資料庫的步驟參考資料庫
- Oracle怎麼從歸檔模式變成非歸檔模式,詳細步驟Oracle模式
- Oracle怎麼從非歸檔模式變成歸檔模式,詳細步驟Oracle模式
- 【轉】雙節點RAC下將資料庫從非歸檔模式更改到歸檔模式資料庫模式
- 【ARCHIVE】單機環境修改資料庫為非歸檔模式Hive資料庫模式
- 非歸檔模式下的資料檔案路徑修改模式
- 資料庫啟動歸檔模式資料庫模式
- 開啟資料庫歸檔模式資料庫模式
- 更改資料庫為歸檔模式資料庫模式
- OARCLE資料庫歸檔模式的設定資料庫模式
- 非歸檔模式恢復資料庫模式資料庫
- Oracle資料庫切換歸檔模式Oracle資料庫模式
- 歸檔模式下聯機熱備份某個表空間步驟模式
- Oracle 修改歸檔模式Oracle模式
- Oracle資料庫歸檔模式的切換ELOracle資料庫模式
- 如何設定資料庫為歸檔模式資料庫模式
- duplicate資料庫的操作步驟資料庫
- 資料庫優化的步驟資料庫優化
- 將Oracle資料庫改為歸檔模式並啟用Rman備份Oracle資料庫模式
- 對歸檔模式下CLEAR 未歸檔日誌後恢復資料庫的一點看法模式資料庫
- RAC(ASM)歸檔模式修改ASM模式
- DBA接手一個資料庫時候需要檢查的資料及步驟資料庫
- 迴歸測試的四個步驟