保證還原點創建及刪除

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;



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章