oracle如何恢复删除的数据
查询删除数据的时间点的数据(快照恢复)
select * from 表名 as of timestamp to_timestamp('2013-05-29 15:29:00','yyyy-mm-dd hh24:mi:ss');
注意:能恢复的时间长度取决于快照的retention(默认7天),可通过sql查询
select * from dba_hist_wr_control;
例如我的采集间隔调整为1小时,采样数据保留8天
后期补充其他方法~
查询删除数据的时间点的数据(快照恢复)
select * from 表名 as of timestamp to_timestamp('2013-05-29 15:29:00','yyyy-mm-dd hh24:mi:ss');
注意:能恢复的时间长度取决于快照的retention(默认7天),可通过sql查询
select * from dba_hist_wr_control;
例如我的采集间隔调整为1小时,采样数据保留8天
后期补充其他方法~