博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
impdp导入报错ORA-14460: only one COMPRESS or NOCOMPRESS clause may be specified
阅读量:7196 次
发布时间:2019-06-29

本文共 1016 字,大约阅读时间需要 3 分钟。

迁移环境

源:Solaris 10 + Oracle 11.2.0.3

目标:Solaris 10 + Oracle 11.2.0.1

导出命令:

expdp user/pwd directory=jy content=metadata_only tables=xxx,xxx,xxx exclude=statistics dumpfile=expdp_xxx.dmp logfile=expdp_xxx.log version='11.2.0.1.0'

导入命令:

impdp user/pwd directory=jy remap_schema=user1:user2 remap_tablespace=tbs1:tbs4,tbs2:tbs4,tbs3:tbs4 dumpfile=expdp_xxx.dmp log=impdp_xxx.log

1.导入过程中报错:

Processing object type TABLE_EXPORT/TABLE/TABLEORA-39083: Object type TABLE:"XXXXXXXXX"."XXX_XXXXXX_XXXXX_XXXXX_XXX" failed to create with error:ORA-14460: only one COMPRESS or NOCOMPRESS clause may be specifiedFailing sql is:
$   oerr ora 1446014460, 00000, "only one COMPRESS or NOCOMPRESS clause may be specified"// *Cause: COMPRESS was specified more than once, NOCOMPRESS was specified more//         than once, or both COMPRESS and NOCOMPRESS were specified.// *Action: specify each desired COMPRESS or NOCOMPRESS clause option only once.
2.网上搜到的相关资料:
转载地址:
 
3.最终解决方法:
导入命令加入
transform=segment_attributes:n
这样就可以成功导入之前导入失败的表。
 
你可能感兴趣的文章
将数字转换为字符串(int2str)
查看>>
解决「matplotlib 图例中文乱码」问题
查看>>
node.js
查看>>
程序员学习网站
查看>>
odoo开发笔记:Server+Action服务器动作自动触发执行
查看>>
02-CSS基础与进阶-day5_2018-09-03-22-10-39
查看>>
Krajee 文件上传
查看>>
[深入JUnit] 测试运行的入口
查看>>
.Net转Java自学之路—基础巩固篇十五(IO)
查看>>
CRUD操作
查看>>
C#和VB新版本的最新特性列表
查看>>
centos部署airflow工作流, 本地web界面不显示
查看>>
_itoa _itow _itot atoi atof atol
查看>>
想说的话
查看>>
前端静态资源版本更新与缓存之——通过gulp 在原html文件上自动化添加js、css版本号...
查看>>
c++ sizeof
查看>>
摘录:测试各阶段的意义
查看>>
成长型思维模式Not yet
查看>>
Dell PowerEdge服务器RAID卡驱动下载
查看>>
安装Stomp扩展时错误提示error: 'zend_class_entry' has no member named 'default_properties'
查看>>