RMAN duplicate using backup ..
I have the followiing RMAN duplicate script ...
run
{
allocate auxiliary channel ch1 type disk;
allocate auxiliary channel ch2 type disk;
DUPLICATE DATABASE TO TEST
UNTIL TIME "TO_DATE('06-19-2017 04:00:00', 'MM-DD-YYYY HH24:MI:SS')"
BACKUP LOCATION '/backup/stage';
}
=====
these are the backups available to me. Aarchive logs are backed up along with the DB backups.
full backups from 6/16 10PM
inc1 backups from 6/17 10PM
inc1 backups from 6/18 10PM
inc1 backups from 6/19 10PM
also control file backups from all these dates.
=====
what are the backups i needed (to be in /backup/stage), 6/16 full backup and 6/19 inc1 backup only?
which controlfile backup do i need (6/19 controlfile backup?). why?