--使用被删除表的所有者登录
select S.droptime from user_recyclebin s where  s.original_name='表名';

--使用DBA登录
select S.droptime from dba_recyclebin s where  s.original_name='表名';

 

查看回收站中表

select object_name,original_name,partition_name,type,ts_name,createtime,droptime from recyclebin;

恢复表

SQL>flashback table test_drop to before drop;或
SQL>flashback table "BIN$b+XkkO1RS5K10uKo9BfmuA==$0" to before drop;

注:必须9i或10g以上版本支持,flashback无法恢复全文索引

 

相关文章:

  • 2022-12-23
  • 2021-05-15
  • 2021-11-19
  • 2022-03-10
  • 2021-07-01
  • 2022-12-23
  • 2021-09-12
猜你喜欢
  • 2021-11-19
  • 2022-12-23
  • 2021-12-23
  • 2021-11-29
  • 2021-11-19
  • 2021-10-17
相关资源
相似解决方案