RMAN-06024
Este post é para memorizar algo que já precisei e voltei a pesquisar no Google.
Estava criando um Standby através do RMAN, utilizando os seguintes comandos:
connect target /
connect auxiliary sys/[pass]@standby
run {
allocate auxiliary channel ch1 type disk;
duplicate target database for standby dorecover nofilenamecheck;
release channel ch1;
}
E ocorreu o seguinte erro:
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of restore command at 04/11/2009 12:18:23
RMAN-06026: some targets not found - aborting restore
RMAN-06024: no backup or copy of the controlfile found to restore
A correção foi:
connect target /
sql 'alter system archive log current';
connect auxiliary sys/[pass]@standby
run {
allocate auxiliary channel ch1 type disk;
duplicate target database for standby dorecover nofilenamecheck;
release channel ch1;
}
save;
rsssss 🙂 — memória registrada —
[]s