【ARCHIVE】單機環境修改資料庫為非歸檔模式
單機環境下修改歸檔模式方法相對RAC環境比較簡單,簡單記錄一下。
1.查詢系統當前歸檔模式
sys@ora10g> archive log list;
Database log mode Archive Mode
Automatic archival Enabled
Archive destination /oracle/arch/ora10g
Oldest online log sequence 1525
Next log sequence to archive 1527
Current log sequence 1527
系統現處於歸檔模式
2.重新啟動資料庫到mount狀態
sys@ora10g> shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
sys@ora10g> startup mount;
ORACLE instance started.
Total System Global Area 209715200 bytes
Fixed Size 2071640 bytes
Variable Size 125830056 bytes
Database Buffers 75497472 bytes
Redo Buffers 6316032 bytes
Database mounted.
3.在mount狀態下直接調整資料庫到非歸檔模式
sys@ora10g> alter database noarchivelog;
Database altered.
4.OPEN資料庫驗證資料庫歸檔模式
sys@ora10g> alter database open;
Database altered.
sys@ora10g> archive log list;
Database log mode No Archive Mode
Automatic archival Disabled
Archive destination /oracle/arch/ora10g
Oldest online log sequence 1525
Current log sequence 1527
OK,此時系統已執行在非歸檔模式。
5.小結
只有測試類、玩具類的資料庫才會執行在非歸檔模式,不建議資料庫執行在非歸檔模式。
不過,如果資料庫執行在沒有任何備份策略的環境下,仍然強制資料庫執行在歸檔模式下的意義也是不大的。
Good luck.
secooler
10.04.19
-- The End --
1.查詢系統當前歸檔模式
sys@ora10g> archive log list;
Database log mode Archive Mode
Automatic archival Enabled
Archive destination /oracle/arch/ora10g
Oldest online log sequence 1525
Next log sequence to archive 1527
Current log sequence 1527
系統現處於歸檔模式
2.重新啟動資料庫到mount狀態
sys@ora10g> shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
sys@ora10g> startup mount;
ORACLE instance started.
Total System Global Area 209715200 bytes
Fixed Size 2071640 bytes
Variable Size 125830056 bytes
Database Buffers 75497472 bytes
Redo Buffers 6316032 bytes
Database mounted.
3.在mount狀態下直接調整資料庫到非歸檔模式
sys@ora10g> alter database noarchivelog;
Database altered.
4.OPEN資料庫驗證資料庫歸檔模式
sys@ora10g> alter database open;
Database altered.
sys@ora10g> archive log list;
Database log mode No Archive Mode
Automatic archival Disabled
Archive destination /oracle/arch/ora10g
Oldest online log sequence 1525
Current log sequence 1527
OK,此時系統已執行在非歸檔模式。
5.小結
只有測試類、玩具類的資料庫才會執行在非歸檔模式,不建議資料庫執行在非歸檔模式。
不過,如果資料庫執行在沒有任何備份策略的環境下,仍然強制資料庫執行在歸檔模式下的意義也是不大的。
Good luck.
secooler
10.04.19
-- The End --
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29618264/viewspace-1815670/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle資料庫歸檔模式的切換ELOracle資料庫模式
- 華為GaussDB資料庫(單機版)在ARM環境下的安裝指南資料庫
- 達夢資料庫初體驗-單機環境部署記錄資料庫
- Oracle資料庫歸檔模式的開啟和關閉Oracle資料庫模式
- SQL資料庫怎麼進行資料歸檔和歸檔管理?SQL資料庫
- oracle 11g開啟歸檔模式及修改歸檔目錄Oracle模式
- 對歸檔模式下CLEAR 未歸檔日誌後恢復資料庫的一點看法模式資料庫
- RAC開啟資料庫歸檔資料庫
- rac歸檔模式/非歸檔模式下檔案建至本地儲存修復方法-ORA-01157模式
- SQLServer2012高可用映象資料庫 實施方案(非域環境)SQLServer資料庫
- 2.10.1 在non-CDB(非多租戶)環境中克隆資料庫資料庫
- Polardb-O資料庫歸檔配置資料庫
- 網站檔案修改資料庫,安全高效地修改網站資料庫中的檔案資訊網站資料庫
- GBase XDM(單機/分片叢集)資料庫修改記錄資料庫
- 織夢資料庫配置檔案修改資料庫配置方法資料庫
- Sybase或SQLServer資料庫分批歸檔方案SQLServer資料庫
- python環境連結Oracle資料庫PythonOracle資料庫
- 【MySQL資料庫】認識資料庫+環境搭建--------Windows系統MySql資料庫Windows
- 達夢資料庫歸檔方式及其配置方法資料庫
- oracle資料庫歸檔日誌量陡增分析Oracle資料庫
- Oralce資料庫關閉歸檔日誌並且刪除歸檔日誌資料庫
- Win環境至Linux環境Oracle資料庫遷移全過程LinuxOracle資料庫
- Mac環境下安裝MongoDB資料庫MacMongoDB資料庫
- 教小白搭建sybase資料庫環境資料庫
- TiDB 在餓了麼歸檔環境的應用TiDB
- Windows單機配置Zookeeper環境Windows
- 在 Homestead 環境下為 PHP 新增 Oracle 資料庫擴充套件(OCI)PHPOracle資料庫套件
- LightBD/PostgreSQL資料庫設定歸檔保留時間SQL資料庫
- openGauss資料庫JDBC環境連線配置(Eclipse)資料庫JDBCEclipse
- 存檔-環境資訊aptAPT
- ZooKeeper 系列(二)—— Zookeeper單機環境和叢集環境搭建
- 安裝配置 zookeeper (單機非叢集模式)模式
- 資料結構:歸併排序(非遞迴)資料結構排序遞迴
- 【資料庫資料恢復】LINUX環境下ORACLE資料庫誤刪除的資料恢復資料庫資料恢復LinuxOracle
- Oracle資料庫日常問題-歸檔異常增長Oracle資料庫
- CentOS修改Mariadb資料庫檔案儲存路徑CentOS資料庫
- zblog的資料庫配置檔案是哪個?怎樣修改資料庫配置資訊?資料庫
- DM7使用dmrestore工具利用不同資料庫的歸檔恢復資料庫REST資料庫
- 網站資料庫如何修改config.php,如何在網站配置檔案中修改資料庫連線資訊網站資料庫PHP