10g+: Transportable Tablespaces Across Different Platforms (Doc ID 243304.1)
10g+: Transportable Tablespaces Across Different Platforms (Doc ID 243304.1)
APPLIES TO:
Oracle Database - Enterprise Edition - Version 10.1.0.2 to 12.2.0.1 [Release 10.1 to 12.2]
Oracle Database - Standard Edition - Version 10.1.0.2 to 12.2.0.1 [Release 10.1 to 12.2]
Oracle Database Cloud Schema Service - Version N/A and later
Oracle Database Exadata Cloud Machine - Version N/A and later
Oracle Cloud Infrastructure - Database Service - Version N/A and later
Information in this document applies to any platform.
PURPOSE
Ask Questions, Get Help, And Share Your Experiences With This Article
Would you like to explore this topic further with other Oracle Customers, Oracle Employees, and Industry Experts?
Click here to join the discussion where you can ask questions, get help from others, and share your experiences with this specific article.
Discover discussions about other articles and helpful subjects by clicking here to access the main My Oracle Support Community page for Database Datawarehousing.
Introduction 介绍
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.
本公告说明了现在如何在不同的OS平台(跨平台)以及不同的RDBMS版本之间传输表空间。 跨平台功能自10g起可用。 此列表摘自11.2.0.3; 较旧的RDBMS版本可能包含较少的平台。
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) 将数据从DW环境分发到数据集市(通常是不同的平台)
- 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.
除其他事项外,不会传输驻留在SYSTEM表空间中的对象和SYS拥有的对象。 这包括但不限于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-contained 检查表空间是否是独立的
SQL> execute sys.dbms_tts.transport_set_check('TBS1,TBS2', true);
SQL> select * from sys.transport_set_violations;
==>These violations must be resolved before the tablespaces can be transported 必须先解决这些冲突,然后才能传输表空间
Set the tablespace to READ ONLY 将表空间设置为只读
SQL> alter tablespace TBS1 read only;
Tablespace altered.
3. Export metadata
<HP-UX> exp userid=\'/ as sysdba\' transport_tablespace=y
tablespaces=TBS1
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 TBS1 ...
. exporting cluster definitions
. exporting table definitions
. . exporting table COL_CHG
. . exporting table DATABASES
....
. . exporting table 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: Datapump也可以用于此目的:
expdp \'/ as sysdba\' directory=tts_dump dumpfile=tts1_dp.dmp logfile=tts_dump_log:tts.log
transport_tablespaces=TBS1 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=TBS1 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 数据移动和启用TTS
4. Check the endianness of the target database and convert, if necessary 检查目标数据库的字节序,并在必要时进行转换
Case 1: Same Endianness (Big->Big or Little->Little) 情况1:相同的字节序 (Big->Big or Little->Little)
The source platform is Sun SPARC Solaris: endianness Big
The target platform is HP-UX (64-bit): endianness Big
SQL> SELECT PLATFORM_ID , PLATFORM_NAME FROM V$TRANSPORTABLE_PLATFORM; 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.
满足以下所有三个要求的文件不需要文件转换:(1) 源和目标OS的字节序相同(位数无关紧要), (2) 将导入包含补丁程序的RDBMS版本中 对于未发布的Bug 8973825(10.2.0.5或11.2.0.2及更高版本),以及(3)不包含 undo and rollback segment。 如果未发布的Bug 8973825的修复不适用于您的目标数据库版本,则您需要使用RMAN转换功能,如下面情况2所示。
Case 2: Different Endianness (Big->Little or Little->Big) 情况2:不同的字节序 (Big->Little or Little->Big)
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: 如果我们移动文件并导入表空间:
. importing SYS's objects into SYS
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/db1/VB2/datafile/tbs1df.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: 在导入步骤之前在SOURCE上本地进行,以便文件与字节序兼容
<Solaris> rman target=/ Recovery Manager: Release 10.2.0.4.0 - 64bit
connected to target database: VB2 (DBID=3287908689) RMAN> convert tablespace 'TBS1'
2> to platform="Linux IA (32-bit)"
3> db_file_name_convert='/database/db1/VB2/datafile/tbs1df.dbf',
4> '/tmp/tbs1df.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/db1/VB2/datafile/tbs1df.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. 转换后的数据文件在/tmp目录中暂存,直到将其复制到目标服务器为止。
--> 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. 当源的v$transportable_platform未列出目标平台时,在目标平台上进行转换是一种前进的方法。
When conversion is done on the target platform then CONVERT DATAFILE is used instead of CONVERT TABLESPACE, ie: 在目标平台上完成转换后,将使用CONVERT DATAFILE而不是CONVERT TABLESPACE,即:
RMAN> CONVERT DATAFILE
'/database/db1/VB2/datafile/tbs1df.dbf'
TO PLATFORM="Linux IA (32-bit)"
FROM PLATFORM="HP TRu64 UNIX"
DB_FILE_NAME_CONVERT="/database/db1/VB2/datafile/", "/tmp/";
5. Move datafiles and export dump file 移动数据文件并导出dump文件
$ ftp tts.dmp
+/database/db1/VB2/datafile/tbs1df.dbf (no conversion) --未转换
or
/tmp/tbs1df.dbf (converted file if conversion had been required) --(如果需要转换,则转换文件)
6. Import metadata
Note: Users need to be created in the target database first with a default tablespace of an existing tablespace name.
注意:首先需要使用现有表空间作为默认表空间在目标数据库中创建用户。
$ imp userid=\'/ as sysdba\' TRANSPORT_TABLESPACE=Y
datafiles=/database/db1/VB2/datafile/tbs1df.dbf
(or /tmp/tbs1df.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 "COL_CHG"
...
. . importing table "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: 如果使用DataPump导出,则必须使用相同的工具进行导入
impdp \'/ as sysdba\' directory=tts_dump dumpfile=tts1_dp.dmp logfile=tts_dump_log:tts.log
transport_datafiles='/database/oradata/tbs1.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:
表空间已存在或未创建目标 schema 时,无法导入。 如果用户不存在,DataPump可以使用remap_schema提供替代方法(对于imp,我们可以创建 schema),即:
REMAP_SCHEMA=<source_user>:<target_user>
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).
如果目标中已经存在表空间,则可以在impdp上使用 remap_tablespace 参数(导入中没有任何选项,但在源处重命名表空间或在目标处重命名表空间)。
REMAP_TABLESPACE=(<source_tbs1>:<target_tbs1>,<source_tbs2>:<target_tbs2>,...)
7. Set the imported tablespace to READ WRITE 将导入的表空间设置为READ WRITE
Note: After the tablespaces are read write, you will want to alter your users' default tablespaces to the correct ones.
注意:对表空间进行读写后,您将需要将用户的默认表空间更改为正确的表空间。
SQL> alter tablespace reposit read write;
Tablespace altered.
8. Take a full, no-rows export of the source database and import it into the target database to create the missing objects that are not transported with TTS, such as sequences, roles, etc. 完整no-rows地导出源数据库,并将其导入目标数据库,以创建未随TTS传输的丢失对象,例如序列,角色等。
-- For traditional export, the parameter is ROWS set to N 对于传统导出,参数为ROWS设置为N
exp FULL=y GRANTS=y CONSTRAINTS=y ROWS=n
-- For Data pump export, the parameter is CONTENT set to METADATA_ONLY 对于数据泵导出,将参数CONTENT设置为METADATA_ONLY
expdp FULL=y CONTENT=metadata_only
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. 如果您需要移动ASM表空间,则步骤非常相似, Note 394798.1 可以帮助您描述整个过程。
- 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.
REFERENCES
NOTE:394798.1 - How to Create Transportable Tablespaces Where the Source and Destination are ASM-Based
NOTE:371556.1 - How to Migrate to different Endian Platform Using Transportable Tablespaces With RMAN
NOTE:100693.1 - Getting Started with Transportable Tablespaces
NOTE:733824.1 - How To Recreate A Database Using TTS (Transportable TableSpace)
NOTE:77523.1 - Transportable Tablespaces -- An Example to Setup and Use
NOTE:243245.1 - 10G New Storage Features and Enhancements
10g+: Transportable Tablespaces Across Different Platforms (Doc ID 243304.1)的更多相关文章
- Master Note for Transportable Tablespaces (TTS) -- Common Questions and Issues (Doc ID 1166564.1)
APPLIES TO: Oracle Database Cloud Exadata Service - Version N/A and laterOracle Database Cloud Servi ...
- Transportable tablespace on standby (Doc ID 788176.1)
APPLIES TO: Oracle Database - Enterprise Edition - Version 10.2.0.1 to 10.2.0.4 [Release 10.2]Oracle ...
- Checklist for an RMAN Restore (Doc ID 1554636.1)
Checklist for an RMAN Restore (Doc ID 1554636.1) APPLIES TO: Oracle Database - Enterprise Edition - ...
- How to Create Transportable Tablespaces Where the Source and Destination are ASM-Based (Doc ID 394798.1)
How to Create Transportable Tablespaces Where the Source and Destination are ASM-Based (Doc ID 39479 ...
- V4 Reduce Transportable Tablespace Downtime using Cross Platform Incremental Backup (Doc ID 2471245.1)
V4 Reduce Transportable Tablespace Downtime using Cross Platform Incremental Backup (Doc ID 2471245. ...
- 如何使用 TRANSPORTABLE = ALWAYS 将PDB移回Non-CDB (Doc ID 2027352.1)
How to Move a PDB Back to a Non-CDB Using TRANSPORTABLE=ALWAYS (Doc ID 2027352.1) APPLIES TO: Oracle ...
- Step by Step Process of Migrating non-CDBs and PDBs Using ASM for File Storage (Doc ID 1576755.1)
Step by Step Process of Migrating non-CDBs and PDBs Using ASM for File Storage (Doc ID 1576755.1) AP ...
- 如何通过RMAN使用传输表空间迁移到不同的Endian平台 (Doc ID 371556.1)
How to Migrate to different Endian Platform Using Transportable Tablespaces With RMAN (Doc ID 371556 ...
- 11G-使用跨平台增量备份减少可移动表空间的停机时间 XTTS (Doc ID 1389592.1)
11G - Reduce Transportable Tablespace Downtime using Cross Platform Incremental Backup (Doc ID 13895 ...
随机推荐
- 代码管理平台之git
yum install -y gitmkdir -p /date/gitrootcd !$git init git add 1.txtgit commit -m "add 1.txt&quo ...
- weui实现滚动加载的效果
weui是微信公司提供的一个UI框架,在H5开发中一些组件可以直接使用.weui文档地址:http://www.jqweui.cn/components 使用weui,需要引入weui.css和jqu ...
- jQuery-验证码倒计时的实现
点击发送验证码,通常需要加入倒计时功能,HTML如下: <center class='block captchaArea'> <input class="input pwd ...
- Snack3 之 Jsonpath使用
Snack3 之 Jsonpath使用 一. Snack3 和 JSONPath 介绍 Snack3 是一个支持JSONPath的JSON框架.JSONPath是一个很强大的功能,也可以在Java框架 ...
- 初窥R(基本说明、获取帮助、工作空间、输入输出、包)
本篇简要介绍使用R的一些基本概念,包括基本说明.获取帮助.工作空间.输入输出,每个知识点中都会通过一个例子来练习. 一.R基本情况说明 1.R是一种区分大小写的解释性语言. 2.控制台默认使用命令提示 ...
- 从0使用Ruby on Rails打造企业级RESTful API项目实战之我的云音乐
本节对我们项目实现的功能和知识点做一个简单的介绍,因为是RESTful API项目,所以对于后端来说基本上没有什么UI界面可展示,那我们就在关键的点,使用客户端(Android)实现的效果图. 课程简 ...
- leetcode题解:整数反转
给出一个 32 位的有符号整数,你需要将这个整数中每位上的数字进行反转. 示例 1: 输入: 123 输出: 321 示例 2: 输入: -123 输出: -321 示例 3: 输入: 120 输出 ...
- Python网络爬虫_Scrapy框架_1.新建项目
在Pycharm中新建一个基于Scrapy框架的爬虫项目(Scrapy库已经导入) 在终端中输入: ''itcast.cn''是为爬虫限定爬取范围 创建完成后的目录 将生成的itcast.py文件移动 ...
- 浅谈python中selenium库调动webdriver驱动浏览器的实现原理
最近学web自动化时用到selenium库,感觉很神奇,遂琢磨了一下,写了点心得. 当我们输入以下三行代码并执行时,会发现新打开了一个浏览器窗口并访问了百度首页,然而这是怎么做到的呢? from se ...
- 配置 Elasticsearch 集群
Elasticsearch 的安装非常简单,笔者在前文<单机部署 ELK>中已经介绍过了,本文主要介绍集群的配置,并解释常见配置参数的含义. 要配置集群,最简单的情况下,设置下面几个参数就 ...