Steps for Oracle Upgradation
10 steps for Upgrading Oracle from 8.1.7 to 10.1.0.2.0
- Install 10-G in new ORACLE_HOME path.
- Change to 10-G Path as below:
cd $ORACLE_HOME/rdbms/admin
copy utlu101i.sql to new dir
- In 8.1.7 database run utlu101i.sql, which gives the output about system requirements, the Parameter should be updated etc.
SQL> spool upgr.lst
SQL>@ utlu101i.sql;
SQL>spool off;
From the upgr.lst, note the changes to be made.
- Copy init file from 8.1.7 dbs to <newpath> make changes to init parameters as mentioned in upgr.lst
- Startup the database in upgrade mode:
SQL> startup pfile=’<newpath>/inittest.ora’ upgrade;
- Create sysaux tablespace
SQL> create tablespace sysaux
Datafile ‘<newpath>/sysaux.dbf’ size 500M
Extent management local
Segment space management auto online;
- Run the upgrade script.
SQL> @ ‘$ORACLE_HOME/rdbms/admin/u0801070.sql’;
- Shutdown the database.
SQL>shutdown immediate;
- Startup the database
SQL> startup;
- Recompile the Invalid objects:
SQL> @’$ORACLE_HOME/rdbms/admin/utlrp.sql’
D.Sasi kumar
0 comments:
Subscribe to:
Post Comments (Atom)