ORA-14264: table is not partitioned by Composite Range method
Cause: The table in the MODIFY DEFAULT ATTRIBUTES FOR PARTITION operation is partitioned by method other than Composite method
Action: Ensure that the table is partitioned by Composite method
Oracle 14264 错误消息表示无法使用复合类型范围分区法或复合类型列表分区法将表进行分区。
Oracle 官方解释
本错误消息指出无法使用复合类型范围分区法或复合类型列表分区法将表进行分区。
常见案例
在尝试使用复合类型范围分区法或复合类型列表分区法将未分区的表进行分区时,可能会收到此错误消息。
正常处理方法及步骤
要解决此问题,可以使用普通的单一范围分区法或单一列表分区法将未分区的表进行分区:
1. 执行 ALTER TABLE 语句,指定分区所需的所有属性,创建分区。
2. 执行 ALTER TABLE 语句,将未分区的表添加到新创建的分区中。
3. 执行 ALTER TABLE 语句,创建复合类型范围分区法或复合类型列表分区法。
4. 执行 ALTER TABLE 语句,添加现有分区到复合类型分区中。