一.如果只是誤刪部分數據或者某條數據可以通過
1、select * from 誤刪除的表明 as of timestamp to_Date('恢復年月日 時分秒', '恢復時間格式') where 查詢條件;
如:select * from emp as of timestamp to_Date('2014-11-27 16:20:00', 'yyyy-mm-dd hh24:mi:ss') where ename='scott' //查詢到誤刪除的數據
2、將查詢出來的數據導出,在導入表中;
二.如果誤刪全部數據;
1、insert into 誤刪的表明 select * from 誤刪的表明 as of timestamp to_Date('2014-11-27 16:28:00', 'yyyy-mm-dd hh24:mi:ss') where 查詢條件; //已將誤刪除數據插入表中