首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

oracle中即时找回被删除的数据

2013-03-19 
oracle中及时找回被删除的数据div stylefont-size: 14px数据库回闪select * from whir$t3068 as of t

oracle中及时找回被删除的数据
<div style="font-size: 14px">
数据库回闪
select * from whir$t3068 as of timestamp to_timestamp( '2012-03-30 9:00:00' , 'yyyy-mm-dd hh24:mi:ss' )

select * from whir$t3068 as of timestamp sysdate-750/1440;

flashBack table scheme.whir$t3068 to timestamp(timeVariable,'2012-03-30 09:mi:ss')


********************这个效果很好***************************
先执行SQL查询出来被删除的数据
select * from 表名 as of timestamp sysdate-1/12

在把数据添加到删除的表中
insert into biao select  * from 表名 as of timestamp sysdate-1/12


</div>

热点排行