表空间检查
要传输的表空间在目标端不能有;
SYSTEM, SYSAUX, UNDO, and temporary tablespaces大小要大于或等于源端数据库;
日志文件
大小要大于或等于源端数据库;
检查数据库时区,保持两边一致
检查字符集,保持两边一致
数据库组件检查
检查是否使用了Key Compression 的索引组织表
检查源端是否有 Cluster 对象
select owner, segment_name, segment_type
from dba_segments
where tablespace_name in ('SYSTEM', 'SYSAUX')
and owner not in
(select name from system.logstdby$skip_support where action = 0);
-- 源端库需要关闭 段延迟 DEFERRED_SEGMENT_CREATION
select dbtimezone from dual;
select * from database_properties where property_name like '%CHARACTERSET';
Key compression
Selectindex_name,table_name from dba_indexes where compression=’ENABLED’;
索引组织表
Select owner,table_namefrom dba_tables where iot_type is not null;
如果存在,目标端需要安装 Patch 14835322,否则索引组织表的对象无法导入到目标端。
目前该补丁只在 11.2.0.3 版本下提供,针对其他版本,如果 IOT表或者键值压缩索引无法导入时,建议在
元数据导入完成后,将该类对象传输过去。
文档被以下合辑收录
评论