alter table tablename enable row movement;
flashback table tablename to timestamp to_timestamp('2014/10/25 9:02:20','YYYY-MM-DD HH24:MI:SS');
alter table tablename disable row movement;
flashback table tablename to timestamp to_timestamp('2014/10/25 9:02:20','YYYY-MM-DD HH24:MI:SS');
alter table tablename disable row movement;
本文介绍如何使用Oracle数据库的闪回特性来将表格恢复到特定的时间点。首先启用行移动,然后利用FLASHBACK TABLE命令指定时间戳进行恢复,最后禁用行移动确保数据一致性。
7744

被折叠的 条评论
为什么被折叠?



