Difficulty duplicating a database using an older backup rman-20207
Hi-
I'm having difficulty duplicating a database, QCODB, on one host to another database, FIXODB, on a second host using an older backup
I'm using RMAN on the host where the source database exists and running the following:
connect target /
connect catalog rman@backupdb
connect auxiliary sys@fixodb
run {
set until time "to_date('2009-03-29 11:23:00','yyyy-mm-dd hh24:mi:ss')";
duplicate target database to fixodb;
}
When running the above, I get RMAN-20207, until_time before resetlogs time.
The database is 10.2.0.3. My database backup has a tag assigned to it, but I haven't seen how to duplicate a database by specifying a backup tag.
I'm having difficulty duplicating a database, QCODB, on one host to another database, FIXODB, on a second host using an older backup
I'm using RMAN on the host where the source database exists and running the following:
connect target /
connect catalog rman@backupdb
connect auxiliary sys@fixodb
run {
set until time "to_date('2009-03-29 11:23:00','yyyy-mm-dd hh24:mi:ss')";
duplicate target database to fixodb;
}
When running the above, I get RMAN-20207, until_time before resetlogs time.
The database is 10.2.0.3. My database backup has a tag assigned to it, but I haven't seen how to duplicate a database by specifying a backup tag.
0