ORA-14763: Unable to resolve FOR VALUES clause to a partition number
Cause: Could not determine the partition corresponding to the FOR VALUES clause.
Action: Remove bind variables and dependencies on session parameters from the values specified in the FOR VALUES clause.
等
ORA-14763: 不能将 FOR VALUES 子句解析为分区号
指定了无效分区号的情况下,当针对一个分区表执行 ALTER TABLE 语句,并且带有一个 FOR VALUES 子句时,该错误将被抛出。
当 ALTER TABLE 语句的 FOR VALUES 子句指定的分区号不存在时,这个错误会被触发。
1.确认表是否存在此分区,使用 SHOW PARTITION 命令查看分区表,
2.确定不存在时,请使用 ADD PARTITION 命令新建分区,然后在进行 ALTER TABLE 语句修改;
3.如果存在,请检查 ALTER TABLE 语句中指定的分区号是否输入正确。