Hello,
I'm trying to run a Point in Time Restore on my PDB without success. I created a backup by running:
RMAN> BACKUP PLUGGABLE DATABASE WISE15;
Then I opened the database again, changed some data in it and closed it again. Then I ran
RMAN> LIST BACKUP;
and copied the SCN listed in the most recent backup of my PDB. Then I ran the commands:
RMAN> RUN {
2> SET UNTIL SCN 2703555;
3> RESTORE PLUGGABLE DATABASE WISE15;
4> RECOVER PLUGGABLE DATABASE WISE15;
5>}
After trying numerous things after googling I get new errors every time and no success... So I'd like to know: what is the way to get the current SCN from a specific backup? Last time I tried I got an "RMAN-06024: no backup or copy of the control file found to restore" error so I did a new backup and tried again and get now a different error. I'm out of options...