日期:2014-05-16  浏览次数:20879 次

oracle Table 資料被刪除了
剛剛不小心下了一個語法 delete from odrm ;

并commit﹔

請問如何才能通過日志文件找回資料

請幫忙提供詳細步驟

謝謝

------解决方案--------------------
SQL code

create table odrm_del
as  select *
from odrm
as of timestamp to_timestamp('2011-04-27 12:00:00', 'yyyy-mm-dd hh24:mi:ss')

------解决方案--------------------
有备份否? 如果有备份的话,
先restore database;

recover database until time "to_date('','')";
alter database open;