用于直接drop掉表的情况(plsql developer直接删掉表就是drop操作)

  1. 查删除的表
    select object_name,original_name,partition_name,type,ts_name,createtime,droptime from recyclebin;
    同时查出的有表的主键、索引等等,只需闪回表,其他的也随之恢复
  2. 闪回
    flashback table tablename to before drop;

相关文章:

  • 2021-11-30
  • 2022-12-23
  • 2021-12-14
  • 2021-12-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-30
  • 2022-12-23
  • 2019-11-09
  • 2021-08-08
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案