一時手快,把一個表的數據全清空了,嚇得出了一身冷汗。ide
還好有緊急恢復的辦法。flash
1.打開Flash存儲的權限
alter table tablename enable row movement ;it
2.把表還原到指定時間點
flashback table tablename to timestamp to_timestamp('2012-06-12 10:40:00','yyyy-mm-dd hh24:mi:ss'); (後面的參數爲要還原的時間點)table
執行完以後再查看,表的數據就恢復啦。class