oracle 誤刪除資料恢復
可以採用如下語句處理:
select * from 表名 as of timestamp to_date('2014-02-27 14:28:00', 'yyyy-mm-dd hh24:mi:ss')
以上語句標示,可以查詢出該表在某個時間點的資料,既然可以查詢出以往的資料,那就可以直接恢復了。
如下語句
insert into 表名 select * from 表名 as of timestamp to_date('2014-02-27 14:28:00', 'yyyy-mm-dd hh24:mi:ss')
但是,如果資料刪除後,資料表結構變化了,該種方法就不中用了,
oracle誤刪除資料恢復
今天無意中在網上看到了關於oracle誤刪除資料恢復的一條資訊,發現的確很好使,下面就我的測試向大家匯報下。1.select from t viradsl2 t 查詢t viradsl2中所有的資料,可以看到三條資料 2.delete t viradsl2 刪除t viradsl2中所有的資料,三條...
oracle誤刪除資料恢復
1.select from your table t 查詢your table中所有的資料,可以看到三條資料 2.delete your table 刪除your table中所有的資料,三條資料消失 3.select from your table t 無資料。4.insert into your...
ORACLE 誤刪除資料恢復
首先通過如下sql語句找到執行刪除的last active time。即找到具體的刪除時間。select sql text,last active time from v sqlarea where last active time to date 刪除資料的大約時間 yyyymmdd hh24 m...