美文网首页linux redhat & Oracle
保证还原点创建及删除

保证还原点创建及删除

作者: 重庆思庄 | 来源:发表于2019-02-27 16:06 被阅读0次

    1.创建还原点

    create restore point test_scn guarantee flashback database;

    create restore point BEFORE_UPGRADE guarantee flashback database;

    2.查看还原点

    1* select name,TIME from v$restore_point

    NAME TIME

    -------------------- ----------------------------------------

    TEST_SCN 10-DEC-12 12.21.08.000000000 AM

    BEFORE_UPGRADE 10-DEC-12 12.37.01.000000000 AM

    3.删除还原点

    drop restore point TEST_SCN;

    drop restore point BEFORE_UPGRADE;

    oracle培训

    相关文章

      网友评论

        本文标题:保证还原点创建及删除

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