一. 資料檔案校正
dbv file=block.dbf blocksize=8192
二.復原段名稱查詢
strings system01.dbf | grep _SYSSMU | cut -d $ -f 1 | sort -u #oracle10g
strings system01.dbf | grep _SYSSMU | cut -d $ -f 1 | sort -u #oracle9i
三. 資料庫mount狀態可用視圖.
v$controlfile
v$log
v$datafile
v$logfile
v$recover_file;
v$recovery_log;
v$transaction
v$tempfile
v$tablespace
四。系統Oracle UNDO資料表空間的重建
SQL>CREATE UNDO TABLESPACE "UNDOTEMP" DATAFILE '/oradata1/dbnms/undotemp.dbf' SIZE 20M;
SQL>ALTER SYSTEM SET UNDO_TABLESPACE = UNDOTEMP;
SQL>drop tablespace undotbs1 including contents and datafiles;
五。ORACLE 9I TEMP 資料表空間的重建
SQL> create temporary tablespace TEMP1 tempfile '/oradata1/dbnms/temp1.dbf' size 100M ;
SQL> alter database default temporary tablespace temp1;
SQL> drop tablespace temp including contents and datafiles;
六。非當前redolog損壞
alter database clear unarchived logfile group 3 ;
七。當前redolog損壞
SQL>_allow_resetlogs_corruption=TRUE
SQL> recover database until cancel;
cancel
SQL>alter database open resetlogs;
重建庫後建議執行:ANALYZE TABLE ...VALIDATE STRUCTURE CASCADE;
八。臨時檔案損壞
1、離線該資料檔案:
SQL>alter database datafile '檔案名稱全名' offline drop;
2、開啟資料庫
SQL>alter database open
3、刪除該暫存資料表空間
SQL>drop tablespace temp(或其它暫存資料表空間名稱);
4、重新建立該資料表空間,並重新分配給使用者。
九。復原檔案損壞資料庫關閉
*._corrupted_rollback_segments ='_SYSSMU1$','_SYSSMU10$','_SYSSMU2$','_SYSSMU3$','_SYSSMU4$','_SYSSMU5$','_SYSSMU9$'
*.undo_management='AUTO'
*.undo_tablespace='UNDOTEMP' #不能用system