- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Startup Oracle DB with different version of excuta...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2005 07:15 PM
11-20-2005 07:15 PM
Startup Oracle DB with different version of excutable..!?
I've an Oracle DB in version 7.2.0 but lost the oracle executables.....
is it possible to use other verison of oracle executable to open and mount the DB?
The oldest oracle i can found is 7.2.3!
if not, any suggestion to startup the DB??
THX,
Warren
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2005 07:16 PM
11-20-2005 07:16 PM
Re: Startup Oracle DB with different version of excutable..!?
I it will work if you have the init.ora file.
But I would take a backup of all datafiles before trying this action
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2005 08:46 PM
11-20-2005 08:46 PM
Re: Startup Oracle DB with different version of excutable..!?
actually, the $ORACLE_HOME was lost and also the init.ora and the listener configure.
Can i use the default parameters to startup the DB? of course i need to point to the correct control files in the init.ora
THX,
Warren
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2005 09:15 PM
11-20-2005 09:15 PM
Re: Startup Oracle DB with different version of excutable..!?
I should work with the default parameters in init.ora
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2005 09:46 PM
11-20-2005 09:46 PM
Re: Startup Oracle DB with different version of excutable..!?
before you try anything, please do a full backup.
if you have a copy of the database controlfile, maybe you can get back to operations quite easily...
is your database still up?
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2005 09:55 PM
11-20-2005 09:55 PM
Re: Startup Oracle DB with different version of excutable..!?
your version is not to far off.
first you can go to nomount state to debug
your new init.ora file.
Once you have achieved that you can
check the control file(s) by going
to mount state.
You may need to run the catproc again !!
(it doesn't do any harm anyway if you do)
from there you can open with a
open resetlogs.
Good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2005 11:51 AM
11-21-2005 11:51 AM
Re: Startup Oracle DB with different version of excutable..!?
Yes it should work with the default parameters in init.ora. As you mentioned change the parameter file to point to the correct location of the control files, and also check the number and the names of the rollback segments defined are the same as defined in the database.
And as Yogeeraj mentioned, it is good to take a full backup of the DB.
IA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2005 11:55 AM
11-21-2005 11:55 AM
Re: Startup Oracle DB with different version of excutable..!?
Thanks for the reply!
The DB is restored from tape but ppl didn't perform any backup on the oracle executables..!!
I also post the question in a oracle forum and 1 reply said that it need to start the DB in upgrade/migrate mode, any idea?
I need to make sure the procedure and it will work
MANY THX!!
Warren.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2005 11:59 AM
11-21-2005 11:59 AM
Re: Startup Oracle DB with different version of excutable..!?
If I don't know the name of the RBS, could I startup the DB in nomount and re-create a new group of RBS?
THX.
Warren
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2005 12:46 PM
11-21-2005 12:46 PM
Re: Startup Oracle DB with different version of excutable..!?
If you do not know the rollback segment names and the number of them, then you can comment this line in the init.ora file before starting the database.
IA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2005 01:02 PM
11-21-2005 01:02 PM
Re: Startup Oracle DB with different version of excutable..!?
When you say the DB has been restored from tape, can you startup the database. Or was it the Oracle software and all the config, parameter files restored from tape.
This is what metalink says about startup migrate.
STARTUP MIGRATE should only be used when a database instance is being migrated to a different version or when a patch is being applied. Further, once the
migration or patch has been successfully applied, the instance should be shutdown and restarted in normal mode.
STARTUP MIGRATE was introduced in 9.2 as a mechanism to be sure that most
everything that needs to be done to run an upgrade script or a patch script is done automatically. In the past, customers were expected to adjust certain initialization parameters prior to beginning an upgrade or applying a a patch, but most of this is now done automatically by STARTUP MIGRATE.
When a customer starts a database in MIGRATE mode, the following ALTER SYSTEM commands will be set automatically:
ALTER SYSTEM ENABLE RESTRICTED SESSION;
ALTER SYSTEM SET "_SYSTEM_TRIG_ENABLED"=FALSE SCOPE=MEMORY;
ALTER SYSTEM SET JOB_QUEUE_PROCESSES=0 SCOPE=MEMORY;
ALTER SYSTEM SET AQ_TM_PROCESSES=0 SCOPE=MEMORY;
ALTER SESSION SET NLS_LENGTH_SEMANTICS=BYTE;
IA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2005 01:37 PM
11-21-2005 01:37 PM
Re: Startup Oracle DB with different version of excutable..!?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2005 08:22 PM
11-21-2005 08:22 PM
Re: Startup Oracle DB with different version of excutable..!?
Are you able to start it after comenting the rollback_segments part?
#rollback_segments = (RBS01,RBS02,...)
Best Regards,
Eric Antunes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2005 08:06 PM
11-22-2005 08:06 PM
Re: Startup Oracle DB with different version of excutable..!?
applicable to version 7.2.x,
but there is a point about the upgade
that is worth mentioning.
When you have installed back your
executables you will have a number
of catalog scripts in
$ORACLE_HOME/rdbms/admin
like cat7.2.1.sql,cat7.2.3
You should run them in sequence starting from
the version you came from right upto
the version of your executables.
Once in mount state you will be in fact upgrading. But check first what the number of
cat scripts are (I do not have version 7 so
I cannot check) but it will show for itself
Same applies to catproc but is less fussy.
regards;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 02:11 AM
11-23-2005 02:11 AM
Re: Startup Oracle DB with different version of excutable..!?
An easier solution to all of this would be to recreate a blank database and import the data from an export file. (Hopefully you have one :)
Thanks,
-Chris