(2012-03-13 16:59:30)
標籤:分類:oracle資料庫
分析和解決問題:
1.重起資料庫:
c:\documents and settings\jacken>sqlplus /nolog
sql> conn sys/123456 as sysdba;
sql> shutdown immediate;
資料庫已經關閉。
已經解除安裝資料庫。
oracle 例程已經關閉。
sql> startup;
total system global area 293601280 bytes
fixed size
1248600 bytes
variable size
100663976 bytes
database buffers
184549376 bytes
redo buffers
7139328 bytes
資料庫裝載完畢。
第 1 行出現錯誤:
ora-01113: 檔案 1 需要介質恢復
ora-01110: 資料檔案 1: 'g:\oracle\product\10.2.0\oradata\mydb\system01.dbf'
執行startup卻無法啟動,出現ora-01113,ora-01110的錯誤。那好辦,恢復檔案。
2.恢復檔案介質
sql> shutdown immediate;
sql> recover datafile 'g:\oracle\product\10.2.0\oradata\mydb\system01.dbf';
完成介質恢復。
sql> alter database open;
sql> startup;
這樣問題就解決了!
錯誤ORA 01113 資料庫介質檔案錯誤
c documents and settings administrator sqlplus nolog sql plus release 8.1.7.0.0 production on 星期一 7月 23 11 45 34 2007 sql conn sys manager as sysdba 已...
ORA 01113 檔案 4 需要介質恢復
原因是資料庫檔案處於離線狀態下才報ora 01113 檔案 4 需要介質恢復錯誤 檢視資料檔案的狀態 select name,status from v datafile 如何解決 在資料庫啟動例項並不開啟狀態下,恢復介質,具體操作如下 sql recover datafile e oracle p...
ORA 09817,ORA 01075報錯解決方法
sql conn as sysdba error ora 09817 write to audit file failed.svr4 error 28 no space left on device ora 01075 you are currently logged on sql 檢視硬碟空間發現...