美文网首页
闪回操作

闪回操作

作者: 蚁丶点 | 来源:发表于2019-03-06 19:51 被阅读0次

    闪回表数据
    先让row_movement可编辑
    select row_movement from user_tables where table_name='STUDENT';
    alter table STUDENT enable row movement;
    闪回
    flashback table student to timestamp to_timestamp('2018-12-17 14:28:33','yyyy-mm-dd hh24:mi:ss');

    删除表后闪回

    flashback table STUDENT to before drop;

    相关文章

      网友评论

          本文标题:闪回操作

          本文链接:https://www.haomeiwen.com/subject/nbpckqtx.html