RMAN-20005

Error: RMAN-20005: target database name is ambiguous

Causa: Two or more databases in the recovery catalog match the DB_NAME initialization parameter of the instance and the target database is not mounted, so RMAN cannot get its DBID.

Acción: Mount the target database then retry the operation.

COMENTARIOS:

por Lorenzo Hombría | 17/10/2013 12:50:24

RE: RMAN-20005

No puedes montar tu BdD target (era mi caso)
Acude al catálogo y busca en las vistas
select distinct db_name from dbinc order by db_name;
SELECT R.*
FROM DBINC D, RC_DATABASE R
WHERE D.DB_NAME ='xxxx'
AND D.DB_KEY=R.DB_KEY;

y cuando obtengas de rc_database el dbid
en RMAN haz
set dbid=99999999
ya estarás conectado a tu BdD
Suerte y ánimo