DBA Hub

📋Steps in this guide1/1

Create/drop flashback restore point

-- To create a guarantee flashback restore point;

oracle configurationintermediate
by OracleDba
13 views
1

Create/drop flashback restore point

-- To create a guarantee flashback restore point; -- Check the restore_points present in database -- Drop restore point;

Code/Command (click line numbers to comment):

1
2
3
SQL>create restore point BEFORE_UPG guarantee flashback database;
SQL>select * from v$restore_point;
SQL> drop restore point BEFORE_UPG;

Comments (0)

Please to add comments

No comments yet. Be the first to comment!