啟動錶行移動功能
alter table ds.zw_file enable row movement
按時間閃回表
flashback table ds.zw_file to timestamp to_date('201412011100','yyyymmddhh24mi')
啟動資料庫閃回功能
alter database flashback on
使資料庫能夠回閃。為此,它必須處於archivelog模式下。在mount階段,在open之前,
shutdown immediate ;
startup mount ;
alter database flashback on; 開啟閃回功能
alter table personuser enable row movement; 針對某個特定的表,啟用行移動功能
flashback table personuser to timestamp to_timestamp ('05/16/200921:15:00','mm/dd/yyyy hh24:mi:ss'); 閃回表
flashback database to timestamp to_timestamp ('05/16/200921:30:00','mm/dd/yyyy hh24:mi:ss'); 閃回資料庫
alter database open resetlogs 由於使用備份的控制檔案恢復,該檔案內不包含目標資料庫redologs和資料檔案頭部scn資訊,所以必須通過resetlogs方式open。
恢復誤刪除資料
用log explorer試一下!下面是對該軟體的介紹 解壓縮密碼 www.heibai.net 序號產生器產生的是註冊碼,是兩個 用解壓縮密碼解開後,壓縮包裡也有乙個序號產生器的 開啟log explorer file attach log file 選擇伺服器和登陸方式 connect 選擇資料...
誤刪除資料恢復(flashback)
flashback query flashback drop flashback table用法總結 1.flashback query 閃回到15分鐘前 select from orders as of timestamp systimestamp interval 15 minute where...
oracle誤刪除資料恢復
今天無意中在網上看到了關於oracle誤刪除資料恢復的一條資訊,發現的確很好使,下面就我的測試向大家匯報下。1.select from t viradsl2 t 查詢t viradsl2中所有的資料,可以看到三條資料 2.delete t viradsl2 刪除t viradsl2中所有的資料,三條...