啟用ORACLE9I資料庫的歸檔模式(ARCHIVELOG)
啟用ORACLE9I資料庫的歸檔模式(ARCHIVELOG)
# su - oracle
$ sqlplus '/as sysdba'
SQL*Plus: Release 9.2.0.4.0 - Production on Tue Jun 16 21:52:06 2010
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
Connected to:
Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.4.0 - Production
SQL> archive log list;
Database log mode No Archive Mode
Automatic archival Disabled
Archive destination /home/oracle/app/oracle/product/920/dbs/arch
Oldest online log sequence 10980
Current log sequence 10982
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup mount;
ORACLE instance started.
Total System Global Area 2099220552 bytes
Fixed Size 745544 bytes
Variable Size 1560281088 bytes
Database Buffers 536870912 bytes
Redo Buffers 1323008 bytes
Database mounted.
SQL> alter database archivelog;
Database altered.
SQL> show parameter spfile;
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
spfile string /u01/oradata/admin/dbs/spfileo
racle8.ora
SQL> show parameter log_archive_start;
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
log_archive_start boolean FALSE
SQL> alter system set log_archive_start=true scope=spfile;
System altered.
SQL> show parameter log_archive_start;
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
log_archive_start boolean FALSE
SQL> alter database open;
Database altered.
SQL> show parameter log_archive_start;
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
log_archive_start boolean FALSE
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORACLE instance started.
Total System Global Area 2099220552 bytes
Fixed Size 745544 bytes
Variable Size 1560281088 bytes
Database Buffers 536870912 bytes
Redo Buffers 1323008 bytes
Database mounted.
Database opened.
SQL> show parameter log_archive_start;
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
log_archive_start boolean TRUE
SQL> archive log list;
Database log mode Archive Mode
Automatic archival Enabled
Archive destination /home/oracle/app/oracle/product/920/dbs/arch
Oldest online log sequence 10980
Next log sequence to archive 10982
Current log sequence 10982
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8183550/viewspace-663792/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 修改資料庫歸檔模式(ARCHIVELOG/NOARCHIVELOG)資料庫模式Hive
- 資料庫啟動歸檔模式資料庫模式
- 開啟資料庫歸檔模式資料庫模式
- 如何啟動或關閉oracle的歸檔(ARCHIVELOG)模式OracleHive模式
- 修改資料庫的歸檔模式資料庫模式
- Oracle資料庫歸檔模式的開啟和關閉Oracle資料庫模式
- ORACLE 12C 開啟資料庫歸檔模式Oracle資料庫模式
- 將Oracle資料庫改為歸檔模式並啟用Rman備份Oracle資料庫模式
- 【Flashback】啟用閃回資料庫功能需要在歸檔模式下完成資料庫模式
- archive啟用歸檔模式Hive模式
- 更改資料庫為歸檔模式資料庫模式
- RAC開啟資料庫歸檔資料庫
- Oracle資料庫開啟歸檔Oracle資料庫
- 開啟oracle資料庫歸檔Oracle資料庫
- 修改叢集資料庫的歸檔模式資料庫模式
- OARCLE資料庫歸檔模式的設定資料庫模式
- Oracle9i啟動歸檔Oracle
- RAC資料庫啟用歸檔和閃回的步驟資料庫
- 非歸檔模式恢復資料庫模式資料庫
- 將資料庫修改為歸檔模式資料庫模式
- oracle 修改資料庫為歸檔模式Oracle資料庫模式
- Oracle資料庫切換歸檔模式Oracle資料庫模式
- 檢視oracle資料庫是否歸檔和修改歸檔模式Oracle資料庫模式
- Oracle資料庫歸檔模式的切換ELOracle資料庫模式
- Oracle9i RAC 更改歸檔模式Oracle模式
- DBCA靜默方式建庫及啟用歸檔模式模式
- 如何設定資料庫為歸檔模式資料庫模式
- 檢視oracle資料庫是否歸檔和修改歸檔模式(轉)Oracle資料庫模式
- 資料庫的FLASHBACK 與ARCHIVELOG模式的關係資料庫Hive模式
- 在ARCHIVELOG模式中恢復資料庫Hive模式資料庫
- 將資料庫轉換至archivelog模式資料庫Hive模式
- 11g資料庫設定歸檔模式資料庫模式
- 檢視oracle資料庫是否為歸檔模式Oracle資料庫模式
- 開啟歸檔模式模式
- 歸檔模式下資料庫全恢復的過程模式資料庫
- 修改歸檔模式的通用步驟(非RAC 資料庫)模式資料庫
- 【轉】雙節點RAC下將資料庫從非歸檔模式更改到歸檔模式資料庫模式
- 非歸檔模式下恢復資料庫兩例模式資料庫