10g+: Transportable Tablespaces Across Different Platforms [ID 243304.1]
Applies to:
Oracle Server - Standard Edition - Version 10.1.0.2 to 11.2.0.3 [Release 10.1 to 11.2]
Information in this document applies to any platform.
Purpose
This bulletin explains how tablespaces can now be transported between different OS platforms (cross-platform), as well as different RDBMS versions. The cross-platform. feature is available in 10g onwards. This list is taken from 11.2.0.3; older RDBMS versions may contain fewer platforms.
SQL> -- This list taken from 11.2.0.3. Older RDBMS versions may contain fewer platforms.
SQL> -- The list will not contain the platform. info for the database from which you are running the query.
SQL> col platform_name for a35
SQL> select * from v$transportable_platform. order by platform_id;
PLATFORM_ID PLATFORM_NAME ENDIAN_FORMAT
----------- ----------------------------------- --------------
1 Solaris[tm] OE (32-bit) Big
2 Solaris[tm] OE (64-bit) Big
3 HP-UX (64-bit) Big
4 HP-UX IA (64-bit) Big
5 HP Tru64 UNIX Little
6 AIX-Based Systems (64-bit) Big
7 Microsoft Windows IA (32-bit) Little
8 Microsoft Windows IA (64-bit) Little
9 IBM zSeries Based Linux Big
10 Linux IA (32-bit) Little
11 Linux IA (64-bit) Little
12 Microsoft Windows x86 64-bit Little
13 Linux x86 64-bit Little
14 Linux x86 32-bit Little
15 HP Open VMS Little
16 Apple Mac OS Big
17 Solaris Operating System (x86) Little
18 IBM Power Based Linux Big
19 HP IA Open VMS Little
20 Solaris Operating System (x86-64) Little
21 Apple Mac OS (x86-64) Little
SQL> -- You can easily find the platform. info for the database running the above query by using the following SQL:
SQL> SELECT tp.platform_id,substr(d.PLATFORM_NAME,1,30), ENDIAN_FORMAT
FROM V$TRANSPORTABLE_PLATFORM. tp, V$DATABASE d
WHERE tp.PLATFORM_NAME = d.PLATFORM_NAME;
The output of the query can change with version. So please use the query above to find the current support platforms. In previous releases, the transportable tablespace feature allowed the transfer between platforms of the same architecture only.
Scope
- Publish structured data and distribute for integration on other platforms
- Distribute data from a DW environment to data marts (typically different platforms)
- Share read only tablespaces across heterogeneous clusters
- Migrate a database from one platform. to another by only rebuilding the catalog and transporting the datafiles
Details
Steps
1. Check for restrictions
Review the "Limitations on Transportable Tablespace Use" section in Note 371556.1.
Among other things, objects that reside in the SYSTEM tablespace and objects owned by SYS will not be transported. This includes but is not limited to users, privileges, PL/SQL stored procedures, and views.
If you use spatial indexes, apply the solution in Note 579136.1 "IMPDP TRANSPORTABLE TABLESPACE FAILS for SPATIAL INDEX)" before continuing.
2. Prepare the database
Check that the tablespace will be self-containedSQL> select * from sys.transport_set_violations;
==>These violations must be resolved before the tablespaces can be transported
Tablespace altered.
3. Export metadata
tablespaces=reposit
file=tts.dmp log=exp_tts.log
statistics=none
Export: Release 10.2.0.4.0 - Mon Nov 26 11:49:49 2007
...
Note: table data (rows) will not be exported
About to export transportable tablespace metadata...
For tablespace REPOSIT ...
. exporting cluster definitions
. exporting table definitions
. . exporting table MTG_COL_DEP_CHG
. . exporting table MTG_DATABASES
....
. . exporting table SYBASE11_SYSUSERS
. exporting referential integrity constraints
. exporting triggers
. end transportable tablespace metadata export
Export terminated successfully without warnings.
Review the export log for warnings and errors and resolve issues before continuing. Failure to do so can result in data loss.
Datapump can be used for that purpose too:
transport_tablespaces=tts_1,tts_2 transport_full_check=y
Starting "SYSTEM"."SYS_EXPORT_TRANSPORTABLE_02": system/******** directory=tts_datafile dumpfile=tts1.dmp logfile=tts_dump_log:tts.log transport
_tablespaces=tts_1,tts_2 transport_full_check=y
Processing object type TRANSPORTABLE_EXPORT/PLUGTS_BLK
Processing object type TRANSPORTABLE_EXPORT/TABLE
Processing object type TRANSPORTABLE_EXPORT/INDEX
Processing object type TRANSPORTABLE_EXPORT/INDEX_STATISTICS
Processing object type TRANSPORTABLE_EXPORT/TABLE_STATISTICS
Processing object type TRANSPORTABLE_EXPORT/POST_INSTANCE/PLUGTS_BLK
Master table "SYSTEM"."SYS_EXPORT_TRANSPORTABLE_02" successfully loaded/unloaded
***********************************************************************Dump file set for SYSTEM.SYS_EXPORT_TRANSPORTABLE_02 is:
+DATA/tts1.dmp
Job "SYSTEM"."SYS_EXPORT_TRANSPORTABLE_02" successfully completed at 14:00:34
Movement of data and Enabling TTS
4. Check the endianness of the target database and convert, if necessary
Case 1: Same Endianness (Big->Big or Little->Little)The source platform. is Sun SPARC Solaris: endianness Big
The target platform. is HP-UX (64-bit): endianness Big
PLATFORM_ID PLATFORM_NAME ENDIAN_FORMAT
----------- ----------------------------------- --------------
1 Solaris[tm] OE (32-bit) Big
2 Solaris[tm] OE (64-bit) Big
3 HP-UX (64-bit) Big
File conversion is NOT needed for files that meet all three of the following requirements: (1) have a source and target OS with the same endianness (bitness does not matter), (2) will be imported into an RDBMS version that contains the patch for unpublished Bug 8973825 (10.2.0.5, or 11.2.0.2 and higher), and (3) do not contain undo and rollback segments. If the fix for unpublished Bug 8973825 is not available for your target database version, then you need to use the RMAN convert feature as shown for Case 2 below.
The source platform. is Microsoft WIndows NT: endianness Little
The target platform. is HP-UX (64-bit): endianness Big
If we move the files and import the tablespace:
IMP-00017: following statement failed with ORACLE error 1565:
"BEGIN sys.dbms_plugts.beginImpTablespace('TBS_TTS',37,'SYS',1,0,8192,2,57"
"54175,1,2147483645,8,128,8,0,1,0,8,462754339,1,1,5754124,NULL,0,0,NULL,NULL"
"); END;"
IMP-00003: ORACLE error 1565 encountered
ORA-01565: error in identifying file '/database/db101b2/V101B2/datafile/reposit01.dbf'
ORA-27047: unable to read the header block of file
HP-UX Error: 2: No such file or directory
Additional information: 2
ORA-06512: at "SYS.DBMS_PLUGTS", line 1540
ORA-06512: at line 1
IMP-00000: Import terminated unsuccessfully
You have to convert the files; the files can be converted on source OR on target :
--> locally on the SOURCE before the import step so that the files are endian compatible:
Recovery Manager: Release 10.2.0.4.0 - 64bit
connected to target database: V101B2 (DBID=3287908659)
RMAN> convert tablespace 'REPOSIT'
2> to platform="Linux IA (32-bit)"
3> db_file_name_convert='/database/db101b2/V101B2/datafile/reposit01.dbf',
4> '/tmp/reposit01.dbf';
Starting backup at 26-NOV-07
using target database controlfile instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: sid=8 devtype=DISK
channel ORA_DISK_1: starting datafile conversion
input datafile fno=00006 name=/database/db101b2/V101B2/datafile/reposit01.dbf
converted datafile=/tmp/reposit01.dbf
channel ORA_DISK_1: datafile conversion complete, elapsed time: 00:00:01
Finished backup at 26-NOV-07
The converted datafile is staged in /tmp directory until it is copied to the target server.
--> remotely on the target server after having copied them on the server.
Conversion on target platform. is a way forward when the v$transportable_platform. of the source does Not list the target platform.
When conversion is done on the target platform. then CONVERT DATAFILE is used instead of CONVERT TABLESPACE, ie:
'/database/db101b2/V101B2/datafile/reposit01.dbf'
TO PLATFORM="Linux IA (32-bit)"
FROM PLATFORM="HP TRu64 UNIX"
DB_FILE_NAME_CONVERT="/database/db101b2/V101B2/datafile/", "/tmp/";
5. Move datafiles and export dump file
+
/database/db101b2/V101B2/datafile/reposit01.dbf (no conversion)
or
6. Import metadata
datafiles=/database/db101b2/V101B2/datafile/reposit01.dbf
(or /tmp/reposit01.dbf )
file=tts.dmp log=imp_tts.log
Import: Release 10.2.0.4.0 - on Mon Nov 26 03:37:20 2007
Export file created by EXPORT:V10.02.00 via conventional path
About to import transportable tablespace(s) metadata...
...
. importing SYS's objects into SYS
. importing OMWB's objects into OMWB
. . importing table "MTG_COL_DEP_CHG"
...
. . importing table "SYBASE11_SYSUSERS"
Import terminated successfully without warnings.
Review the import log for warnings and errors and resolve issues before continuing. Failure to do so can result in data loss.
If we exported with DataPump, import must be done with that same tool:
transport_datafiles='/database/oradata/tts1_db1.dbf','/database/oradata/tts2_db1.dbf'
It's not possible to import when tablespace already exists or when target schema is not created. If users don't exist, DataPump provides an alternative by using remap_schema (for import utility
we can create the schema), ie:
REMAP_SCHEMA=:
If tablespace already exists in target, we can use remap_tablespace parameter on impdp (there is no option in import but rename tablespace at source or the existing
one at target).
REMAP_TABLESPACE=(: , : ,...)
7. Set the imported tablespace to READ WRITE
Tablespace altered.
Still have questions
- In case you need to move an ASM tablespace, the steps are quite similar and Note 394798.1 can help as it describes the full process.
- See Document 1166564.1 Master Note for Transportable Tablespaces (TTS) -- Common Questions and Issues
- Use MOS Data Warehousing community to search for similar discussions or start a new discussion on this subject.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/17252115/viewspace-753159/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 10g : Transportable Tablespaces Across Different Platforms [ID 243304.1]ROSPlatform
- How to Move Tablespaces Across Platforms Using Transportable Tablespaces With RMAN [ID 371556.1]ROSPlatform
- Migration Of An Oracle Database Across OS Platforms [ID 733205.1]OracleDatabaseROSPlatform
- Transportable Tablespaces (TTS) for Oracle Database [ID 1461278.2]TTSOracleDatabase
- How to Move a Database Using Transportable Tablespaces (文件 ID 1493809.1)Database
- Master Note for Transportable Tablespaces (TTS) -- Common Questions_1166564.1ASTTTS
- ORA-22868: table with LOBs contains segments in different tablespacesAI
- Backing Up Individual Tablespaces with RMAN
- How to Copy ASM Files Across Nodes [ID 1147859.1]ASMROS
- What is the different between ALE, IDOC and BAPI?API
- Oracle Encrypted TablespacesOracle
- Overview of Tablespaces (38)View
- 3.5 Different
- How To Recreate A Database Using TTS (Transportable TableSpace) [ID 733824.1]DatabaseTTS
- android-Creating Multiple APKs for Different Screen Sizes,Creating Multiple APKs for Different GL TeAndroidAPK
- set up different data screen(masterial master) for different userAST
- V$TRANSPORTABLE_PLATFORM;Platform
- Oracle Transporting TablespacesOracle
- oracle bigfile tablespacesOracle
- Compatibility Matrix for Export And Import Between Different Oracle Versions [Video] [ID 132904.1]ExportImportOracleIDE
- How to move ASM spfile to a different disk group [ID 1082943.1]ASM
- Duplicate database from non ASM to ASM to a different host [ID 382669.1]DatabaseASM
- Using Multiple Tablespaces (46)
- Transport of Tablespaces Between Databases (59)Database
- different random numbers generatorrandom
- 10g+ undo表空間使用率計算
- I/O Tuning with Different RAID Configurations (Doc ID 30286.1)AI
- 2.5 Overview of Tablespaces and Database Files in a CDBViewDatabase
- Temporary tablespaces in RAC ? Oracle databas...Oracle
- Client / Server / Interoperability Support Between Different Oracle Versions [ID 207303.1]clientServerOracle
- 2.3.3.3.2 Applications at Different VersionsAPP
- Oracle RAC Technologies Certification Matrix for Microsoft Windows PlatformsOracleROSWindowsPlatform
- v$transportable_platform.endian_formatPlatform
- Transporting Tablespaces with Self-ContainedAI
- Step 8: Create Additional Tablespaces (66)
- How to move progress database to different OSDatabase
- Export And Import Between Different Oracle VersionsExportImportOracle
- android-Maintaining Multiple APKs,Creating Multiple APKs for Different API LevelsAndroidAIAPKAPI