If I have created a restore point my_restore_point
create restore point my_restore_point;
then flashback to this restore_point
flashback database to restore point my_restore_point;
- Will
my_restore_point
still exist?
select * from v$restore_point where name = 'MY_RESTORE_POINT';
- Will
my_restore_point
still exist if I flashback to the restore point's SCN?
variable my_scn number
exec select scn into :my_scn from v$restore_point where name = 'MY_RESTORE_POINT'
flashback database to scn :my_scn;
- Will
my_restore_point
still exist if I flashback to before the restore point's SCN?
flashback database to before scn :my_scn;
- Will
my_restore_point
still exist if I perform an RMAN point-in-time recoveryUNTIL SCN x
, wherex
is the value in:my_scn
?
If I had an environment in which to test this I would attempt these tests myself, so my advanced gratitude to this community for the assist.
Using Oracle Database 19c Enterprise Edition Release 19
Restore points need to be available during MOUNT phase, so they are not like tables etc that are "rewound" during a flashback, eg