ORA-06502:PL / SQL:数字或值错误:字符串缓冲区太小

时间:2013-09-11 02:05:46

标签: sql oracle if-statement plsql while-loop

我尝试了以下代码的不同方式,比如取出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;
/

ERROR:

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的回答,这是关键。

3 个答案:

答案 0 :(得分:35)

  

PL / SQL:数字或值错误:字符串缓冲区太小

是由于您将字符串声明为固定长度(例如20),并且在代码中的某个时刻为其分配一个长度超过您声明的值的值。

例如:

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

会触发这样的错误

答案 1 :(得分:12)

CHAR是一种固定长度的数据类型,它使用尽可能多的空间。因此a:= a||'one ';将需要比可用空间更多的空间。您的问题可以简化为以下示例:

declare
  v_foo char(50);
begin
  v_foo := 'A';
  dbms_output.put_line('length of v_foo(A) = ' || length(v_foo));
  -- next line will raise:
  -- ORA-06502: PL/SQL: numeric or value error: character string buffer too small
  v_foo := v_foo || 'B';
  dbms_output.put_line('length of v_foo(AB) = ' || length(v_foo));  
end;
/

永远不要使用char。对于理由,请检查以下问题(另请阅读链接):

答案 2 :(得分:0)

如果csv文件中的方程式有错误或意外,也可能会发生这种情况。 即-csv文件中的一个单元格以等号(=)(一个Excel公式)开头,这将依次引发错误。 如果您通过消除等号来修复或删除此等式,则它应该可以解决ORA-06502错误。