Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Moving a 10g database to 11g with rman backup

1,077 views
Skip to first unread message

jbe...@gmail.com

unread,
Sep 21, 2012, 7:01:13 PM9/21/12
to
Hello,
Following Doc ID 369644.1, I'm trying to restore a 10g database into a 11g database ( version 11.2.0.1.0), which is in other server.

What I did on 11g server:
- Generate full rman backup of 10g database
- Copy pfile, control file and full rman backup from 10g to 11g

C:\> oradim -new -sid BDSPROD -intpwd bdsprod
C:\> SET ORACLE_SID=BDSPROD
C:\> rman
RMAN> connect target sys
RMAN> SET DBID=367107039
RMAN> STARTUP force nomount PFILE=C:\app\oracle\product\11.2.0\dbhome_1\database\PFILE_bdsprod.ora
RMAN> restore controlfile from 'C:\app\oracle\product\11.2.0\dbhome_1\database\CTRLFILE_BDSPROD.CTL';
RMAN> alter database mount;
RMAN> crosscheck backupset;
RMAN> delete expired backupset;
RMAN> catalog start with 'D:\RMAN_bdsprod\';
RMAN> restore database;
RMAN> recover database;

After this step, I followed Doc ID 558408.1
SQL> connect sys/bdsprod as sysdba
Connected.
SQL> alter database open resetlogs upgrade;

Now, how can I startup database? It seems that only way is doing:
SQL> STARTUP upgrade PFILE=C:\app\oracle\product\11.2.0\dbhome_1\database\PFILE_bdsprod.ora;

In that way, only sysdba can connect to database.
Other ways like just "startup" or "startup pfile=C:\app\oracle\product\11.2.0\dbhome_1\database\PFILE_bdsprod.ora;" it gets errors.
Is there any way to start 11g database?

SQL> startup PFILE=C:\app\oracle\product\11.2.0\dbhome_1\database\PFILE_bdsprod.ora;
ORA-32006: BACKGROUND_DUMP_DEST initialization parameter has been deprecated
ORA-32006: USER_DUMP_DEST initialization parameter has been deprecated
ORACLE instance started.
Total System Global Area 709836800 bytes
Fixed Size 2179136 bytes
Variable Size 201330624 bytes
Database Buffers 499122176 bytes
Redo Buffers 7204864 bytes
Database mounted.
ORA-01092: ORACLE instance terminated. Disconnection forced
ORA-00704: bootstrap process failure
ORA-39700: database must be opened with UPGRADE option
Process ID: 12712
Session ID: 5 Serial number: 3

SQL> startup
ORA-01078: failure in processing system parameters
LRM-00109: could not open parameter file 'C:\APP\ORACLE\PRODUCT\11.2.0\DBHOME_1\
DATABASE\INITBDSPROD.ORA'

jko...@gmail.com

unread,
Oct 3, 2012, 11:49:47 AM10/3/12
to

You're trying to do too many steps as one. You need to do the following (at a very high level):

1) Install 10g to same version as you have on the old server (look up cloning an Oracle Home)
2) Ensure you have created a pfile from spfile and copied your *.ora files from the DBS & Network/Admin directories on the old server to the same locations on the new.
==>>> BE sure to comment out in the PFILE any deprecated parameters (look at the errors you got) AND rename the SPFILE to something like a ".orig" extension so Oracle does not try to startup with the spfile.
A) Copy the original data files directly to the new server (with the Source DB shut down or in "Backup" mode) *OR*
B) Do the backup on the old server/copy to new server
3) USING the 10G Executables If 2B, then restore & recover db, then open resetlogs.

4) USING the 11G Executables, Perform the upgrade using dbua or if you know all the steps it does you can do them manually.

I've done upgrades over 100 times starting all the way back from 7.3 to 11.2.

Jim
Certified Oracle DBA
Oracle Certified Specialist
Oracle Trainer

Mladen Gogala

unread,
Oct 3, 2012, 12:40:42 PM10/3/12
to
On Wed, 03 Oct 2012 08:49:47 -0700, jkotan wrote:

> 1) Install 10g to same version as you have on the old server (look up
> cloning an Oracle Home)

Creating a standby database on the new server would probably be a good
idea. That would also enable dry runs and minimize downtime.



--
Mladen Gogala
The Oracle Whisperer
http://mgogala.byethost5.com
0 new messages