aiaiDBA

加微信获取免费职业规划+学习资料,了解年薪50万的DBA是如何练成的

13718043309

010-86462881

PLS-00215: String length constraints must be in range (1 .. 32767)

PLS-00215: String length constraints must be in range (1 .. 32767)
Cause: When a character variable was declared, a length outside the legal range was specified. For example, the following declarations are illegal: flag CHAR(0); -- illegal; zero length name VARCHAR2(-10); -- illegal; negative length
Action: Change the length constraint, making sure that it lies in the range 1 .. 32767.

请先 登录 后评论

1 个回答

小智
PLS-00215:字符串长度约束必须在范围内(1 ... 32767),
.原因:当声明了一个字符变量时,指定了合法范围之外的长度。例如,以下声明是非法的:flag CHAR(0); - 非法 零长度名称VARCHAR2(-10); - 非法 负长度,
.操作:更改长度约束,确保它在1 .. 32767范围内。,
.
请先 登录 后评论