Oracle 10g新特性之-跨平台表空间传输(三)

2014-11-24 18:59:04 · 作者: · 浏览: 49
Mining options
已成功加载/卸载了主表 "wwl"."SYS_IMPORT_TRANSPORTABLE_01"
启动 "wwl"."SYS_IMPORT_TRANSPORTABLE_01": wwl/******** dumpfile=trans.dmp directory=dpdata transport_datafiles='E:\
Oracle\oradata\wwl\wwl\DATAFILE\TRANS01.DBF'
处理对象类型 TRANSPORTABLE_EXPORT/PLUGTS_BLK
处理对象类型 TRANSPORTABLE_EXPORT/TABLE
处理对象类型 TRANSPORTABLE_EXPORT/TTE_POSTINST/PLUGTS_BLK
作业 "wwl"."SYS_IMPORT_TRANSPORTABLE_01" 已于 15:03 成功完成


9.检查数据


E:\Oracle\oradata\wwl\dpdata>sqlplus trans/trans


SQL*Plus: Release 10.1.0.2.0 - Production on 星期二 4月 27 15:03:50 2004


Copyright (c) 1982, 2004, Oracle. All rights reserved.



连接到:
Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
With the Partitioning, OLAP and Data Mining options


SQL> select count(*) from test;


COUNT(*)
----------
1


SQL> exit
从 Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
With the Partitioning, OLAP and Data Mining options 断开


E:\Oracle\oradata\wwl\dpdata>


可以选择把表空间更改为读写


SQL> alter tablespace trans read write;


表空间已更改。



10.总结


10g的表空间跨平台迁移,较9i就是增加了一个使用Rman进行的文件格式转换的过程.
实际上也就是转换了数据文件头的格式信息而已.



-The End-