标签:oracle数据恢复
最近犯浑脑子一不清醒就把oracle中表的数据给清掉了。
1、先把现在拥有的数据先备份好,备份是个好习惯,记着每次操作数据库一定要有备份。
2、select * from 表名 as of timestamp to_Date(‘想恢复到的时间点‘, ‘时间格式‘);
3、清掉当前表中的数据,记得先备份好!!!
4、 insert into 表名 select * from 表名 as of timestamp to_Date(‘2015-05-05 18:10:00‘, ‘yyyy-mm-dd hh24:mi:ss‘);
其实在操作数据前,时时刻刻记住备份,就不会有这种问题了,记住喔,备份。
标签:oracle数据恢复
原文地址:http://blog.csdn.net/willie_chen/article/details/45535941