oracle误drop表,通过回收站恢复
1.查询测试数据条数
SQL>selectcount(*)fromtest;COUNT(*)----------62.drop 测试表
SQL>drop tabletest;Table dropped.3.通过工具查询到在回收站中存在
4.恢复回收站中误删除表
FLASHBACK TABLE TEST TO BEFORE DROP;5.查询恢复结果
SQL>selectcount(*)fromtest;COUNT(*)----------61.查询测试数据条数
SQL>selectcount(*)fromtest;COUNT(*)----------62.drop 测试表
SQL>drop tabletest;Table dropped.3.通过工具查询到在回收站中存在
4.恢复回收站中误删除表
FLASHBACK TABLE TEST TO BEFORE DROP;5.查询恢复结果
SQL>selectcount(*)fromtest;COUNT(*)----------6