zoukankan      html  css  js  c++  java
  • 使用CLOB抛出数字或值错误异常

    今天在调试某个问题的时候,由于使用了很多循环,我需要都打印出来,试图使用clob整体处理之后再打印。

    最后抛出此异常:数字或值错误。

    网友解释如下:

    $ oerr ora 6502
    06502, 00000, "PL/SQL: numeric or value error%s"
    // *Cause: An arithmetic, numeric, string, conversion, or constraint error
    // occurred. For example, this error occurs if an attempt is made to
    // assign the value NULL to a variable declared NOT NULL, or if an
    // attempt is made to assign an integer larger than 99 to a variable
    // declared NUMBER(2).
    // *Action: Change the data, how it is manipulated, or how it is declared so
    // that values do not violate constraints.
    怀疑是你接收这个参数的过程所用的变量不能接受这么大的数值。

    另,在参考了第一篇文章之后,
    得到出现的原因是
    dbms_output.put_line(),这个输出过程的参数类型是varchar2,不管你用什么变量来传入,都会转成varchar2,因此会报错。

    我之前使用clob直接用字符串拼接不报错是因为刚好此字符串长度不大,而此次的长度通过dbms_lob.getlength()得到的结果是4W+。

    另外,
    建议
    lob类型的操作都有相应的专业函数,不能简单当作字符串来进行处理的
    否则就会受到字符串长度的限制。

    使用DBMS_LOB.Append来操作时,需要先将该对象初始化
    在loop前,先执行 dbms_lob.createtemporary(v_cursor,true);
    即可


    参考地址:

    ORACLE 存储过程返回结果集,拼接为字符串输出为clob

    oracle clob参数类型的长度问题




  • 相关阅读:
    内存溢出与内存泄露的区别
    <a>标签
    mac上的设置查看环境变量
    css-position
    css-overflow
    css-clear
    mongodb基本操作
    idea使用maven install命令打包(springboot),jar运行时出现没有主清单属性
    linux运行jar报错
    maven deploy时报错
  • 原文地址:https://www.cnblogs.com/huanghongbo/p/4531792.html
Copyright © 2011-2022 走看看