闪回表操作语法 flashback table 【 schema.】 table_name to {【before drop 【rename to new_table_name】 】|【scn | timestamp 】】 expr 【enable | disable 】 triggers}:
参数说明: schema:用户模式 before drop:表示恢复到删除之前。 new_table_name :重新定义表名称。 timestamp:时间戳,包括年月日时分秒。 expr:指定一个值或表达式。 enable triggers:触发器恢复后,呈启用状态。 disable triggers:触发器恢复后,呈禁用状态。默认情况下为此选项
使用闪回删除
flashback table sct to before
drop;
flashback table sct to before
drop rename to sct01;
通过回收站唯一名称恢复表
flashback table
"BIN$pldQ0qwlSIeLRbI4yKP6lw==$0" to before drop
rename to sct01;