Moving Oracle database


 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Moving Oracle database
# 1  
Old 01-06-2012
Moving Oracle database

how does one move Oracle database to new OS? Does Oracle need to be the same version as old one?
# 2  
Old 01-07-2012
check the oracle documentation. I suspect if your not changing the architecture you can do a backup/restore.
# 3  
Old 01-07-2012
Quote:
Originally Posted by frank_rizzo
check the oracle documentation. I suspect if your not changing the architecture you can do a backup/restore.
thanks, but, unfortunately, there is documentation only for newer Oracle versions on their site.
# 4  
Old 01-07-2012
It's never simple if you're leaving it to the Vendor's documentation. Same goes for the app using the database, if you're using one from off the shelf or an outside Vendor. Many Vendors will publish their own "certified" listings for this sort of effort. (There's always at least three tiers to a DB environment; platform/OS, DB and app.)

Oracle publishes their end-point release for each version, along with platform requirements such as OS version requirements, etc. Assuming you're already set with a copy of Oracle for your new target OS, your hardest task would be to migrate the data. You'd want to instantiate the DB (ie, schema, etc), and then you could probably offload the data and reload it via utilities such as SQL*Loader. If not, and you're into risk, you could hope that your older version of Oracle will work in the new environment and maybe squeak by on a tape restore.

Same would go for pretty much every other DB product out there...unless there's consultants involved already. Then it's a matter of revenue stream protection.

Good luck.
# 5  
Old 01-07-2012
Quote:
Originally Posted by orange47
thanks, but, unfortunately, there is documentation only for newer Oracle versions on their site.
what version are you using? Have you tried searching Google? I just did and found online documentation for 8, 9i, and 10g.
# 6  
Old 01-09-2012
Documentatation is still available from Oracle 7 onwards:
Oracle Documentation
See section "Previously Released Oracle Documentation".

However you may be forced to upgrade if your current release is discontinued.
# 7  
Old 03-19-2012
Hi,

If you want to move a instance Oracle to new o.s., use "exp" program to create a file with all structure and data, after you must create a new instance in new o.s. and to use "imp" to import the structure and data to new instance.

..:quimera.
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

Identify a specific environment Oracle variable to connect a remote Oracle database ?

Good evening I nned your help pls, In an unix server i want to connect to a remote oracle databse server by sqlplus. I tried to find out the user/passwd and service name by env variable and all Ive got is this: ORACLE_SID_REPCOL=SCL_REPCOL ORACLE_SID=xmeta ORACLE_SID_TOL=SCL_PROTOLCOL... (2 Replies)
Discussion started by: alexcol
2 Replies

2. Solaris

Can't create database after Oracle Database installation

I installed Oracle 10 software on Solaris 11 Express, everything was fine execpt I can't create database using dbca.rsp file. I populated file with following options. OPERATION_TYPE = "createDatabase" GDBNAME = "solaris_user.domain.com" SID = "solaris_user" TEMPLATENAME = "General... (0 Replies)
Discussion started by: solaris_user
0 Replies

3. Programming

Oracle Database Query

How can i modify the below to search for the things i'm looking for during a certain time frame? select Node, NodeAlias, Summary, Tally, AlertKey, AlertGroup, Manager, Agent from mrtg_alerts where LastOccurrence > '5-Dec-2010' order by Manager desc; In this particular case, this query is... (3 Replies)
Discussion started by: SkySmart
3 Replies

4. Shell Programming and Scripting

Moving a database from one server to another

I hope I'm posting this in the correct section. I'm trying to move a database from one server to another. This is the code I'm using... tar czf - vbdatabase.sql | ssh username@full.domain.com 'cat > /home/cpanelusername/vbdatabase.tar.gz ... but all I'm getting is a ">" and then nothing... (4 Replies)
Discussion started by: Chimpie
4 Replies

5. Shell Programming and Scripting

Moving data from one database to other

Dear All, I have 2 databases, There is a lot of data in both the databases, i would like to move some data from one database to the other. I would like to accept 2 parameters from the user, i.e. emplyee id & dept, on entering the 2 i will unload all the data from the tables to the flat files.... (6 Replies)
Discussion started by: lloydnwo
6 Replies
Login or Register to Ask a Question