刪除redo所有日誌,資料庫無法啟動
半夜在itpub上看到有人發貼,說不小心刪除了redo所有日誌,導致資料庫無法啟動,因此模擬了一下。 如下:
OS: Oracle Linux Server release 5.7
DB: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
[oracle@yoon yoon]$ ls
control01.ctl redo01.log redo02.log redo03.log sysaux01.dbf system01.dbf temp01.dbf undotbs01.dbf users01.dbf yoon01.dbf
[oracle@yoon yoon]$ rm -rf redo01.log redo02.log redo03.log
[oracle@yoon yoon]$ ls
control01.ctl sysaux01.dbf system01.dbf temp01.dbf undotbs01.dbf users01.dbf yoon01.dbf
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL>
SQL> startup
ORACLE instance started.
Total System Global Area 1653518336 bytes
Fixed Size 2228904 bytes
Variable Size 956304728 bytes
Database Buffers 687865856 bytes
Redo Buffers 7118848 bytes
Database mounted.
ORA-03113: end-of-file on communication channel
Process ID: 3775
Session ID: 1 Serial number: 5
SQL>
SQL> shutdown abort;
ORACLE instance shut down.
SQL> startup mount
ORACLE instance started.
Total System Global Area 1653518336 bytes
Fixed Size 2228904 bytes
Variable Size 956304728 bytes
Database Buffers 687865856 bytes
Redo Buffers 7118848 bytes
Database mounted.
SQL>
SQL> select member from v$logfile;
MEMBER
--------------------------------------------------------------------------------
/u01/oracle/oradata/yoon/redo03.log
/u01/oracle/oradata/yoon/redo02.log
/u01/oracle/oradata/yoon/redo01.log
SQL>
SQL> alter database clear unarchived logfile group 1;
Database altered.
SQL> alter database clear unarchived logfile group 2;
Database altered.
SQL> alter database clear unarchived logfile group 3;
Database altered.
SQL> alter database open;
Database altered.
SQL>
SQL> select status from v$instance;
STATUS
------------------------------------
OPEN
SQL>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29254281/viewspace-1070615/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 達夢資料庫:誤刪除 undo/redo 日誌怎麼辦資料庫
- redo損壞修復啟動資料庫辦法資料庫
- mysql 資料庫無法啟動Ignoring the redo log due to missing MLOG_CHECKPOINT betweenMySql資料庫
- indexedDB 刪除物件倉庫所有資料Index物件
- Oralce資料庫關閉歸檔日誌並且刪除歸檔日誌資料庫
- StarRocks-FE無法啟動,日誌:
- Oracle11g redo log 建立、新增、刪除(重做日誌組,重做日誌檔案)Oracle
- [20180614]刪除bootstrap$記錄無法啟動2boot
- [20180612]刪除bootstrap$記錄無法啟動.txtboot
- 達夢8資料庫REDO日誌日常管理方法資料庫
- 資料庫篇:mysql日誌型別之 redo、undo、binlog資料庫MySql型別
- 如何刪除資料庫下的所有表(mysql)資料庫MySql
- SQL Server無法刪除資料庫 "xxx",因為該資料庫當前正在使用(如何刪除一個Sql Server資料庫)SQLServer資料庫
- MYSQL資料庫服務無法啟動MySql資料庫
- oracle刪除日誌Oracle
- for迴圈無法刪除陣列所有指定元素陣列
- oracle丟失的是所有的redo日誌組Oracle
- “無法刪除資料庫,因為該資料庫當前正在使用” – 解決方法資料庫
- 達夢資料庫DM8之刪除歸檔日誌檔案資料庫
- SQL Server 2000/2005/2008刪除或壓縮資料庫日誌的方法SQLServer資料庫
- 20180614刪除bootstrap$記錄無法啟動3補充boot
- elasticsearch日誌刪除命令Elasticsearch
- VFEmail遭黑客攻擊 美國區所有資料被刪除且無法恢復AI黑客
- mysql因為事務日誌問題無法啟動MySql
- 美國區所有資料被刪除且無法恢復,這個操作有點狠......
- 資料夾無法刪除顯示在另一程式中開啟
- 資料夾正在使用無法刪除怎麼辦
- 瘋狂刪除tomcat日誌Tomcat
- indexedDB 刪除資料庫Index資料庫
- 2.11 刪除資料庫資料庫
- Oracle日常問題-資料庫無法啟動(案例二)Oracle資料庫
- Oracle日常問題處理-資料庫無法啟動Oracle資料庫
- Oracle 12.2應用PSU後資料庫無法啟動Oracle資料庫
- 達夢資料庫dmap服務無法正常啟動資料庫
- [轉] MySQL binlog 日誌自動清理及手動刪除MySql
- 解決sqlserver資料庫單一使用者無法刪除的問題SQLServer資料庫
- 刪除PPT中所有動畫動畫
- mysql 誤刪除表內資料,透過binlog日誌恢復MySql
- MySQL 正確刪除 binlog 日誌MySql