ORA-14203: subpartition bound of subpartition “string” is too long
Cause: Length of linear key representation of a high bound of the specified subpartition displayed in this message exceeded the legal limit (4K).
Action: Change the representation of a subpartition high bound to bring its length within legal limit.
ORA-14203 错误通常出现在尝试添加或更改子分区时,表示子分区的绑定太长。
ORA-14203: “子分区”string“的子分区边界太长”
发生此错误的原因是指定的子分区边界超过了允许的最大边界长度.
假设有以下SQL使用“U_NAME_VALUE”字符列,其类型为VARCHAR2(256):
ALTER TABLE tbl
ADD SUBPARTITION sbpart
VALUES LESS THAN (‘1000000000’);
如果字符串的绑定长度超过了256个字符,上述SQL语句将会显示ORA-14203,
要解决这个问题,请将子分区的绑定更改为其所表示的最大值,其长度不会超过256个字符。您可以使用以下SQL查找有关子分区绑定的有效信息:
SELECT SUBPARTITION_NAME,
HIGH_VALUE
FROM USER_TAB_SUBPARTITIONS
WHERE TABLE_NAME = ’tbl’;
本文标签:subpartition ORA-14203 bound of #8220string #8221 is too long
原文链接:
版权说明: 本文由作者上传,本站仅提供存储服务,转载请注明原文链接