真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

ORACLE非歸檔模式下REDO日志丟失修復(fù)-創(chuàng)新互聯(lián)

第一步:全備datafile,controlfile,spfile/pfile

創(chuàng)新互聯(lián)主營(yíng)稱多網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,成都APP應(yīng)用開發(fā),稱多h5成都微信小程序搭建,稱多網(wǎng)站營(yíng)銷推廣歡迎稱多等地區(qū)企業(yè)咨詢

第二步:恢復(fù)日志。(原冷備的日志沒有用,千萬(wàn)不要用?。?/p>SQL> select member from v$logfile;                         /ora/app/oracle/oradata/orcl/redo03.log /ora/app/oracle/oradata/orcl/redo02.log /ora/app/oracle/oradata/orcl/redo01.log SQL> archive log list; Database log mode              No Archive Mode Automatic archival             Disabled        Archive destination            USE_DB_RECOVERY_FILE_DEST Oldest online log sequence     10                        Current log sequence           12                        SQL> ho rm $ORACLE_BASE/oradata/orcl/redo*.log   --模擬日志文件丟失。        SQL> ho ls $ORACLE_BASE/oradata/orcl/redo*.log ls: cannot access /ora/app/oracle/oradata/orcl/redo*.log: No such file or directory SQL> startup force ORACLE instance started. Total System Global Area 1536602112 bytes Fixed Size                  2213616 bytes Variable Size             956303632 bytes Database Buffers          570425344 bytes Redo Buffers                7659520 bytes Database mounted.                         ORA-00313: open failed for members of log group 3 of thread 1 ORA-00312: online log 3 thread 1: '/ora/app/oracle/oradata/orcl/redo03.log' ORA-27037: unable to obtain file status                                     Linux-x86_64 Error: 2: No such file or directory                            Additional information: 3   SQL> alter database open resetlogs;        --第一步 alter database open resetlogs       *                                   ERROR at line 1:                    ORA-01139: RESETLOGS option only valid after an incomplete database recovery SQL> recover database using backup controlfile; --第二步 ORA-00279: change 1384991 generated at 05/22/2016 20:05:08 needed for thread 1 ORA-00289: suggestion : /ora/app/oracle/flash_recovery_area/ORCL/archivelog/2016_05_22/o1_mf_1_12_%u_.arc ORA-00280: change 1384991 for thread 1 is in sequence #12                                                 Specify log: {=suggested | filename | AUTO | CANCEL}                           --注意:非歸檔,什么也不做,直接回車。 ORA-00308: cannot open archived log '/ora/app/oracle/flash_recovery_area/ORCL/archivelog/2016_05_22/o1_mf_1_12_%u_.arc' ORA-27037: unable to obtain file status                                                                                 Linux-x86_64 Error: 2: No such file or directory                                                                        Additional information: 3    SQL> alter database open resetlogs;          --第三步 alter database open resetlogs       *                                   ERROR at line 1:                    ORA-01113: file 1 needs media recovery ORA-01110: data file 1: '/ora/app/oracle/oradata/orcl/system01.dbf' SQL> alter system set "_allow_resetlogs_corruption"=true scope=spfile; System altered.                            --第四步,使用隱藏參數(shù),不做一致性檢查啟動(dòng)數(shù)據(jù)庫(kù)。 SQL> startup force mount;                   --第五步,重啟到MOUNT狀態(tài)下。 ORACLE instance started.  Total System Global Area 1536602112 bytes Fixed Size                  2213616 bytes Variable Size             956303632 bytes Database Buffers          570425344 bytes Redo Buffers                7659520 bytes Database mounted.                         SQL> alter database open;                    --第六步 alter database open                       *                                         ERROR at line 1:                          ORA-01589: must use RESETLOGS or NORESETLOGS option for database open SQL> alter database open resetlogs;          --第七步,一般情況下會(huì)正常恢復(fù)。 ERROR:                              ORA-03114: not connected to ORACLE                                               alter database open resetlogs *                             ERROR at line 1:              ORA-01092: ORACLE instance terminated. Disconnection forced ORA-00600: internal error code, arguments: [2662], [0], [1384999], [0], [1385016], [4194432], [], [], [], [], [], [] Process ID: 28621                                                                                                    Session ID: 125 Serial number: 5                                                                                                                                --由于隱藏參數(shù)導(dǎo)致的600錯(cuò)誤。 SQL> exit Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options                  [oracle@test ~]$ sqlplus / as sysdba                                                           SQL*Plus: Release 11.2.0.1.0 Production on Sun May 22 22:56:21 2016 Copyright (c) 1982, 2009, Oracle.  All rights reserved. Connected to an idle instance. SQL> select status from v$instance;        --檢查狀態(tài),數(shù)據(jù)庫(kù)關(guān)閉了。 select status from v$instance * ERROR at line 1: ORA-01034: ORACLE not available Process ID: 0 Session ID: 0 Serial number: 0 SQL> startup mount;                           --再次啟動(dòng) ORACLE instance started. Total System Global Area 1536602112 bytes Fixed Size                  2213616 bytes Variable Size             956303632 bytes Database Buffers          570425344 bytes Redo Buffers                7659520 bytes Database mounted. SQL> alter database open; Database altered.                               --啟動(dòng)成功。 SQL> ho ls $ORACLE_BASE/oradata/orcl/red*         --日志文件自動(dòng)生成 /ora/app/oracle/oradata/orcl/redo01.log  /ora/app/oracle/oradata/orcl/redo02.log  /ora/app/oracle/oradata/orcl/redo03.log SQL> alter system reset "_allow_resetlogs_corruption" scope=spfile sid='*'; System altered.                                --第八步,還原隱藏參數(shù)值。 SQL> startup force                              --第九步,重啟數(shù)據(jù)庫(kù),使參數(shù)生效。

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。


名稱欄目:ORACLE非歸檔模式下REDO日志丟失修復(fù)-創(chuàng)新互聯(lián)
網(wǎng)站URL:http://weahome.cn/article/ppjjh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部