Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Is it possible to backup database oracle 9i and restore in oracle 12c?

74b5fe16-32fa-43d4-9424-d08a593aceddJun 3 2015 — edited Jun 3 2015

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.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 1 2015
Added on Jun 3 2015
13 comments
2,031 views