gpt4 book ai didi

sql - ORA-06502 : PL/SQL: numeric or value error: character string buffer too small

转载 作者:行者123 更新时间:2023-12-03 08:47:34 24 4
gpt4 key购买 nike

我尝试了以下代码的不同方式,例如取出while或if,但是当我将两者放在一起(if和while)时,我总是在最后得到错误......

undefine numero
set serveroutput on
accept numero prompt 'Type # between 100 and 999: '
declare
i number:=1;
a char(25);
b char(1);
c varchar2(10);
d number;
begin
c := №
d := length(c);
b := substr(c, i, 1);
while i <= d loop
if b = '1' then
a:= a||'one ';
end if;
i := i+1;
end loop;
dbms_output.put_line('The number is '||a);
end;
/

错误:
ORA-06502: PL/SQL: numeric or value error: character string buffer too small
ORA-06512: at line 13
06502. 00000 - "PL/SQL: numeric or value error%s"

通过将变量“a”的声明方式更改为:
a varchar2(2000);

*请注意,这里的重大变化是使用 VARCHAR2 而不是 CHAR(不是更大的长度)。根据@user272735 的回答,这就是关键。

最佳答案

PL/SQL: numeric or value error: character string buffer too small



是因为您将字符串声明为固定长度(比如 20),并且在代码中的某个点为它分配了一个长度超过您声明的值的值。

例如:
myString VARCHAR2(20);
myString :='abcdefghijklmnopqrstuvwxyz'; --length 26

会触发这样的错误

关于sql - ORA-06502 : PL/SQL: numeric or value error: character string buffer too small,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18731560/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com