Oracle中,當(dāng)誤刪了數(shù)據(jù)時(shí),如何恢復(fù)這些數(shù)據(jù)
當(dāng)你不小心誤刪了Oracle數(shù)據(jù)時(shí),怎么辦,應(yīng)該如何恢復(fù)這些數(shù)據(jù)?
--好像只能恢復(fù)當(dāng)日刪除的數(shù)據(jù)
create table t_hjhb_hbjcjl2 as
select * from t_hjhb_hbjcjl as of timestamp to_timestamp('2009-06-10 10:28:00','YYYY-MM-DD HH24:MI:SS');
查找要恢復(fù)的數(shù)據(jù)記錄;然后再導(dǎo)入t_hjhb_hbjcjl表里
insert into t_hjhb_hbjcjl select * from t_hjhb_hbjcjl2
posted on 2010-01-17 17:14 飛熊 閱讀(281) 評論(0) 編輯 收藏 所屬分類: ORACLE