(f)--閃回恢復區-- 報錯ORA-00257: archiver error. Connect internal 
之後shutdown immediate等了好久 之後就ctrl C ;shutdown abort之後再啟動資料庫就只能到mount 在open的時候都會自動關掉
SQL> conn / as sysdba
已連線到空閒例程。
SQL> startup mount
ORACLE 例程已經啟動。
Total System Global Area 535662592 bytes
Fixed Size 1375792 bytes
Variable Size 331350480 bytes
Database Buffers 197132288 bytes
Redo Buffers 5804032 bytes
資料庫裝載完畢。
SQL> flashback database to timestamp(sysdate-1);
flashback database to timestamp(sysdate-1)
*
第 1 行出現錯誤:
ORA-38726: 未啟用閃回資料庫事件記錄。
SQL> alter database open resetlogs;
alter database open resetlogs
*
第 1 行出現錯誤:
ORA-01139: RESETLOGS 選項僅在不完全資料庫恢復後有效
SQL> alter database open;
alter database open
*
第 1 行出現錯誤:
ORA-03113: 通訊通道的檔案結尾
程式 ID: 6124
會話 ID: 9 序列號: 3
SQL> startup mount
ORA-24324: 未初始化服務控制程式碼
ORA-01041: 內部錯誤, hostdef 副檔名不存在
SQL> exit
從 Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options 斷開
C:\Documents and Settings\Administrator>sqlplus / as sysdba
SQL*Plus: Release 11.2.0.1.0 Production on 星期二 4月 16 13:47:12 2013
Copyright (c) 1982, 2010, Oracle. All rights reserved.
已連線到空閒例程。
SQL> startup mount;
ORACLE 例程已經啟動。
Total System Global Area 535662592 bytes
Fixed Size 1375792 bytes
Variable Size 331350480 bytes
Database Buffers 197132288 bytes
Redo Buffers 5804032 bytes
資料庫裝載完畢。
SQL> recover database ;
ORA-00283: recovery session canceled due to errors
ORA-00264: no recovery required
SQL> select * from v$log;
GROUP# THREAD# SEQUENCE# BYTES BLOCKSIZE MEMBERS ARC STATUS FIRST_CHANGE# FIRST_TIME NEXT_CHANGE# NEXT_TIME
---------- ---------- ---------- ---------- ---------- ---------- --- ---------------- ------------- -------------- ------------ --------------
1 1 1 52428800 512 1 NO INACTIVE 6213520530 15-4月 -13 6213563034 15-4月 -13
3 1 3 52428800 512 1 NO CURRENT 6213589400 16-4月 -13 2.8147E+14
2 1 2 52428800 512 1 NO INACTIVE 6213563034 15-4月 -13 6213589400 16-4月 -13
SQL> recover database until time '2013-04-06 12:01:02'
ORA-00283: recovery session canceled due to errors
ORA-19907: recovery time or SCN does not belong to recovered incarnation
SQL> alter database flashback on;
alter database flashback on
第 1 行出現錯誤:
ORA-38706: 無法啟用 FLASHBACK DATABASE 事件記錄。
ORA-38708: 沒有足夠的空間可用於第一個閃回資料庫日誌檔案
SQL> ALTER SYSTEM SET DB_RECOVERY_FILE_DEST_SIZE=7G scope=both;
系統已更改。
SQL> alter database flashback on;
資料庫已更改。
SQL> flashback database to timestamp(sysdate-1);
ORA-38729: 執行 FLASHBACK 的閃回資料庫日誌資料不足。
SQL> flashback database to timestamp(sysdate-1/1440);
閃回完成。
SQL> alter database open resetlogs;
資料庫已更改。
SQL> conn test/test
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28602568/viewspace-758925/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ORA-00257: archiver error. Connect internal onlyHiveError
- ORA-00257: archiver error. Connect internal only, until freedHiveError
- 2011.1.13報錯。.ORA-00257: archiver error. Connect internal only, until freed.HiveError
- ORA-00257:archiver error. Connect internal only,until freed.HiveError
- ORA-00257: archiver error. Connect internal only, until freed.HiveError
- 解決ORA-00257: archiver error. Connect internal only, until freedHiveError
- ORA-00257 archiver error. 錯誤的處理方法HiveError
- ORA-00257: archiver error. Connect internal only, until freed 錯誤的處理方法HiveError
- ORA-00257: archiver error. Connect internal only, until freed 解決方法HiveError
- Oracle閃回恢復區Oracle
- (f)--閃回恢復區---實踐2---閃回表(閃回DML部分資料會用到閃回查詢)
- (f)--閃回恢復區-- 並行載入對閃庫的影響並行
- (f)--閃回恢復區---實踐3---閃回查詢(基於AUM (auto undo managemet))
- ORA-00257 archiver error--資料閃回區滿導致無法歸檔HiveError
- Oracle -- 閃回恢復區---實踐1---閃回庫Oracle
- Oracle資料庫的閃回恢復區Oracle資料庫
- Oracle10g閃回恢復區詳解--開啟,設定閃回區Oracle
- Oracle10g閃回恢復區詳解Oracle
- 登入 Oracle 資料庫報錯,ORA-00257: archiver errorOracle資料庫HiveError
- 【備份恢復】 閃回技術之閃回刪除
- 利用undo的閃回特性恢復錯誤操作的表
- Oracle DBA2 ---- 閃回恢復Oracle
- 閃回查詢恢復過程
- 【備份恢復】閃回技術之閃回版本查詢
- 解決ORA-00257:archiver error.Connect internal only, until freedHiveError
- ORA-16014/ORA-00257 archiver error Connect internal onlyHiveError
- oracle10g新特性:閃回恢復區(Flash recovery area)Oracle
- Orcale利用閃回功能恢復資料
- 一個閃回區報警的資料恢復(r11筆記第63天)資料恢復筆記
- 【備份恢復】 閃回技術之閃迴歸檔
- 閃回查詢恢復誤刪資料
- oracle 閃回基於時間的恢復Oracle
- Oracle procedure,package,function,triger 閃回 恢復OraclePackageFunction
- 【備份恢復】閃回資料庫(一)閃回資料庫的管理資料庫
- 10g關閉歸檔/啟用閃回恢復區歸檔
- Oracle的閃回恢復區和歸檔日誌多路徑設定Oracle
- 【備份恢復】閃回資料庫(五)RMAN 命令列閃回資料庫資料庫命令列
- 【備份恢復】閃回資料庫(二) 基於 SCN 閃回資料庫資料庫