Create/drop flashback restore point - oracle database script

Create/drop flashback restore point - Oracle Database Script.

-- To create a guarantee flashback restore point;  create restore point BEFORE_UPG guarantee flashback database;  -- Check the restore_points present in database  select * from v$restore_point;  -- Drop restore point;  drop restore point BEFORE_UPG;