文档解释
ORA-14075: partition maintenance operations may only be performed on partitioned indices
Cause: Index named in ALTER INDEX partition maintenance operation is not partitioned, making a partition maintenance operation, at best, meaningless
Action: Ensure that the index named in ALTER INDEX statement specifying a partition maintenance operation is, indeed, partitioned
ORA-14075错误是一个通用的索引错误,表明只能在分区索引上进行分区维护操作。
官方解释
该错误消息指示分区维护操作(例如增加、减少或重命名分区)只能在分区索引上执行,而不能在非分区索引上执行。
常见案例
当尝试使用分区维护操作在非分区索引上进行维护时,会出现ORA-14075错误。
正常处理方法及步骤
1、检查是否使用的是分区索引,而不是非分区索引。
2、如果尝试在非分区索引上执行操作,请考虑将索引转换为分区索引,以支持分区维护操作。
3、如果想对索引进行分区维护操作,请使用特定的分区维护DML和DDL语句。