1、獲得當(dāng)前數(shù)據(jù)庫的scn號 select current_scn from v$database; (切換到sys用戶或system用戶查詢) 查詢到的scn號為:1499223
2、查詢當(dāng)前scn號之前的scn select * from 表名 as of scn 1499220; (確定刪除的數(shù)據(jù)是否存在,如果存在,則恢復(fù)數(shù)據(jù);如果不是,則繼續(xù)縮小scn號)
3、恢復(fù)刪除且已提交的數(shù)據(jù) flashback table 表名 to scn 1499220;