資料檔案損壞(非系統表空間,非undo表空間),資料庫關掉了
把備份拷貝到指定路徑
startup mount
alter database rename file '+DATA/ora11g/datafile/***' to '+DATA/ora11g/datafile/***';
recover datafile 4;讀歸檔,補資料
alter database open;
資料檔案損壞(非系統表空間,非undo表空間),資料庫在open時
alter tablespace users offline;
把備份拷貝到指定路徑
alter database rename file '+DATA/ora11g/datafile/***' to '+DATA/ora11g/datafile/***';
recover datafile 4;
alter tablespace users online;