I 've backup my oracle 9i with command:
sqlplus /nolog
connect / as sysdba
$rman target /
CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT 'E:\RMANBACKUP\ORA_01062015.bkp';
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO 'E:/RMANBACKUP/ctl_%F';
backup database;
Then I restore it in Oracle 12c with command:
sqlplus /nolog
connect / as sysdba
$rman target /
startup nomount;
restore controlfile from "E:\ORA_01062015.BKP";
alter database mount;
restore database
alter database open resetlogs;
but after executed 'alter database mount' command I have an error:
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of sql statement command at 06/02/2015 09:42:24
ORA-65101: container database setup incorrectly
Please help me to resolve this problems. Thanks.