暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

自动分区的表不支持exp导出分区

原创 jichao.liu 2021-01-05
2892
CREATE TABLE autolist_test (
  ID	 number(10),
  Name varchar2(10),
  Cycle number(6)
) partition by list (Cycle) automatic (
  partition part_202011 values (202011),
  partition part_202012 values (202012),
  partition part_202101 values (202101)
);

[oracle@efi ~]$ exp dbmtmt  tables=dbmt.autolist_test:part_202011

Export: Release 12.2.0.1.0 - Production on 星期一 12月 28 15:58:19 2020

Copyright (c) 1982, 2017, Oracle and/or its affiliates.  All rights reserved.


连接到: Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production
已导出 AL32UTF8 字符集和 AL16UTF16 NCHAR 字符集

即将导出指定的表通过常规路径...
EXP-00113: 功能 New Composite Partitioning Method 不受支持。无法导出 Table DBMT.AUTOLIST_TEST
导出成功终止, 但出现警告。
[oracle@efi ~]$


[oracle@efi ~]$ oerr exp 113
00113, 00000, "Feature %s is unsupported. %s %s.%s could not be exported"
// *Cause:  Export does not contain the required support for this feature.
// *Action: Use Oracle Data Pump Utility
[oracle@efi ~]$

oracle@efi ~]$ expdp dbmt/dbmt directory=ORACLE_HOME tables=dbmt.autolist_test:part_202011 dumpfile=autolist_test%U.dump 

Export: Release 12.2.0.1.0 - Production on 星期一 12月 28 15:50:44 2020

Copyright (c) 1982, 2017, Oracle and/or its affiliates.  All rights reserved.

连接到: Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production
启动 "DBMT"."SYS_EXPORT_TABLE_01":  dbmt/******** directory=ORACLE_HOME tables=dbmt.autolist_test:part_202011 dumpfile=autolist_test%U.dump 
处理对象类型 TABLE_EXPORT/TABLE/TABLE_DATA
处理对象类型 TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
处理对象类型 TABLE_EXPORT/TABLE/STATISTICS/MARKER
处理对象类型 TABLE_EXPORT/TABLE/TABLE
. . 导出了 "DBMT"."AUTOLIST_TEST":"PART_202011"        6.007 KB       1 行
已成功加载/卸载了主表 "DBMT"."SYS_EXPORT_TABLE_01" 
******************************************************************************
DBMT.SYS_EXPORT_TABLE_01 的转储文件集为:
  /u01/oracle/autolist_test01.dump
作业 "DBMT"."SYS_EXPORT_TABLE_01" 已于 星期一 12月 28 15:51:31 2020 elapsed 0 00:00:46 成功完成

「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论