授予闪回权限:
SQL> grant execute on dbms_flashback to username;
闪回误删除的表:
flashback table t_mobile_operater_count to before drop;
闪回表到一个时间点
SQL>flashback table TB_TYPE_CATEGORY to timestamp to_timestamp('2012-02-29 23:00:00','yyyy-mm-dd hh24:mi:ss');
本文详细介绍了如何使用SQL授予闪回权限,并演示了如何闪回表到特定时间点,包括实例操作与命令语法。
授予闪回权限:
SQL> grant execute on dbms_flashback to username;
闪回误删除的表:
flashback table t_mobile_operater_count to before drop;
闪回表到一个时间点
SQL>flashback table TB_TYPE_CATEGORY to timestamp to_timestamp('2012-02-29 23:00:00','yyyy-mm-dd hh24:mi:ss');

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