標籤:oracle 12c 更改 歸檔模式
1.shutdown normal或shutdown immediate關閉資料庫
SQL*Plus: Release 12.1.0.1.0 Production on 星期一 12月 15 15:49:47 2014
Copyright (c) 1982, 2013, Oracle. All rights reserved.
串連到:
Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
SQL> shutdown immediate;
資料庫已經關閉。
已經卸載資料庫。
ORACLE 常式已經關閉。
2.啟動Oracle資料庫到mount狀態
SQL> startup mount;
ORACLE 常式已經啟動。
Total System Global Area 2572144640 bytes
Fixed Size 2405952 bytes
Variable Size 687868352 bytes
Database Buffers 1879048192 bytes
Redo Buffers 2822144 bytes
資料庫裝載完畢。
3.啟用或停止歸檔模式
如果要啟用歸檔模式,此處使用alter database archivelog 命令。
如果要關閉歸檔模式,此處使用alter database noarchivelog 命令。
SQL> alter database archivelog;
資料庫已更改。
SQL> alter database open;
資料庫已更改。
SQL> archive log list;
資料庫記錄模式 存檔模式
自動封存 啟用
存檔終點 USE_DB_RECOVERY_FILE_DEST
最早的聯機日誌序列 16
下一個存檔日誌序列 18
當前日誌序列 18
上述的內容就是對如何開啟或關閉Oracle 12c資料庫的歸檔模式的描述,希望會給你帶來一些協助。
本文出自 “閑雲野鶴” 部落格,請務必保留此出處http://228110.blog.51cto.com/218110/1590129
Oracle 12c 歸檔模式更改