- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Migrating oracle db from HP to AIX
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
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
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
тАО08-03-2003 10:54 PM
тАО08-03-2003 10:54 PM
Migrating oracle db from HP to AIX
- Tags:
- Oracle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-03-2003 11:04 PM
тАО08-03-2003 11:04 PM
Re: Migrating oracle db from HP to AIX
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-03-2003 11:47 PM
тАО08-03-2003 11:47 PM
Re: Migrating oracle db from HP to AIX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-03-2003 11:57 PM
тАО08-03-2003 11:57 PM
Re: Migrating oracle db from HP to AIX
(1) Backup the database on HP.
(2) Backup HP's catexp.sql. Run AIX'S catexp.sql on HP machine.
(3) Export the database on HP.
(4) Using scripts, create the database on AIX machine.
(5) Run cat8x.sql, catalog.sql and catproc.sql on the newly-created database.
(6) Import the database from the dump taken on HP machine.
(7) Recompile any invalid objects e.g. views, triggers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-04-2003 12:10 AM
тАО08-04-2003 12:10 AM
Re: Migrating oracle db from HP to AIX
Not enough information about the database size posted!
anyway,
Lets say
1.if the db is < 15GB
schema level exp/imports OR
sqlplus copy of big objects OR
create table as select over dblink OR
dump and reload
2.if the db is > 15GB
Export and Import will be the tools you use to accomplish this. They are platform independent.
schema level exp/imports -- dropping down to table level on an as needed basis to move really big things. (export N schemas at a time in parallel vs 1 database at a time serially)
Hope this helps!
regards
Yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-04-2003 02:02 AM
тАО08-04-2003 02:02 AM
Re: Migrating oracle db from HP to AIX
Why not kill two birds with one stone ?
1. Install Oracle 8.1.7 on AIX
2. Migration to be done with export on HP-UX and import on AIX. So you can get rid of the fragmentation as well.
Rgds
Alexander M. Ermes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-04-2003 11:20 AM
тАО08-04-2003 11:20 AM
Re: Migrating oracle db from HP to AIX
watch it, 8.1.7 will be desupported in Oracle standard maintanance by the end of the year!
AIX 4.3 is already desupported, which means you need to start with AIX 5.x now, which is not really capable of running 8.1.7. I just did a couple of Oracle 8.1.7 to 9.2.0 Upgrades on AIX in SAP environment. Worked OK, but is lousy, because 8.1.7 runs only on 4.3 and 9.2.0 run only on 5.x. So if the OS-Upgrade in between fails ....
I'd start on AIX 5.x with 9.2.0.3
I'd go the export/import way. Watch out to install the new database with the same DB_CHARSET (check V$NLS_PARAMETER) otherwise you might experience trouble if your database contains LONG or LONG-RAW fields with char-information (will not be char-converted to new charset if changed!!).
The LONG-RAW stuff might be a problem as well for the db-link-stuff and the sqlplus-copies, because usually sqlplus can not select an entire LONG-RAW field.
Hope this helps
Volker