Migrating Oracle 10g from Windows 2003 to Unix
I need to know how to migrate Oracle 10g from Windows 2003 to Unix.

    Requires Free Membership to View

    By submitting your registration information to SearchOracle.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchOracle.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

Because you are migrating to a different operating system, you cannot physically copy the database across to the UNIX server. There are, however, a few options available.

Export/import
Create an Oracle 10g database on your UNIX server, export your Oracle9i database, FTP the .dmp file over to the UNIX server and import it into your newly created database.

Create Table As Select (CTAS) via a Database Link
Create an Oracle 10g database on your UNIX server and create a database link from the database on the Windows server to the UNIX server database. Run 'create table as select …' statements to create your tables with the database on the UNIX server. Remember to also create any required indexes, constraints and referential integrity.

Use Oracle 10g Cross-platform Transportable Tablespaces
You can use the new cross-platform transportable tablespaces feature to move your database to your UNIX server. You must query the view V$TRANSPORTABLE_PLATFORM to see supported platforms and their endianness. Depending on the flavour of UNIX you plan to use, it can either be little or big endian. Windows is considered little endian so there may be an additional step involved to convert the tablespaces being transported on either the source or target side.

To read more about the cross-platform transportable tablespace feature, download the Oracle Database Administrator's Guide 10g (release 10.2) from Oracle Technology Network.

To be sure that the UNIX operating system you are planning to migrate your database to is supported and certified with Oracle 10g, you should also review Oracle's Certification Matrix.

This was first published in February 2007

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.