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

本文共 1066 字,大约阅读时间需要 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
这样就可以成功导入之前导入失败的表。
 

转载于:https://www.cnblogs.com/jyzhao/p/3956832.html

你可能感兴趣的文章
URL地址下载图片到本地
查看>>
ATM作业
查看>>
redis maxmemory设置
查看>>
javascript keycode大全
查看>>
前台freemark获取后台的值
查看>>
log4j.properties的作用
查看>>
滴滴快车历史奖励政策:含工作日和周末的高峰奖励、翻倍奖励【历史政策】...
查看>>
文件操作类2
查看>>
'System.Web.Http.GlobalConfiguration' does not contain a definition for 'Configure'
查看>>
游戏偶感
查看>>
Leetcode: Unique Binary Search Trees II
查看>>
转载------------Python多线程学习
查看>>
判断是否是微信浏览器
查看>>
Beta 冲刺(5/7)
查看>>
博客作业03--栈和队列
查看>>
phpcurl类
查看>>
Hadoop伪分布式搭建
查看>>
C++ FFLIB 之FFDB: 使用 Mysql&Sqlite 实现CRUD
查看>>
apache开源项目-- Turbine
查看>>
Spring-hibernate整合
查看>>