To continue reading for free, register below or login
To read more you must become a member of SearchOracle.com
');
// -->

The CONVERT command in RMAN is useful if you will be using Transportable Tablespaces for moving the datafiles. First, on the Linux system, you'll need to create a new database. Then on the HP-UX system, use the RMAN CONVERT command to convert the endianness, similar to the following:
RMAN TARGET /
CONVERT TABLESPACE ts1,ts2 TO PLATFORM 'Linux IA (32-bit)' FORMAT '/tempdir/%U';
Once you have converted the datafiles, FTP them to the destination server (in BINARY mode) and use TTS to plug them in.
Oracle has a document with more details on how to use TTS for this operation. Keep in mind that TTS will not transfer non-segment objects like views, procedures, etc. You will have to recreate those in the destination database.
|