最近在进行Oracle的一些操作时,总会遇到这个错误: ORA-06502: PL/SQL: 数字或值错误 : 字符串缓冲区太小,错误如下:
查看官方文档上的解释:
ORA-06502: PL/SQL: numeric or value errorstringCause: 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.
是: 想存入数据库的数据(包含数据,字符串等等)不符合该字段的定义(比如长度,约束等), 举个例子,就是说你想存一个空值到非空字段,如存入3位以上的数字到NUMBER(2)字段中,等等
是: 改变数据的类型,或长度,等等。
但是,实际中,我们在做升级的时候,或者做EXPDP/IMPDP的时候,根本不是我们本身的业务数据,也会报这个错误,遇到这种情况,我怎么知道去哪改这个数据呢,
举几个例子:
例1. 上次在做oracle升级的时候,从11.2.0.1.0升到11.2.0.1.6的时候在跑最后的升级脚本catcpu.sql的时候,就遇到这个错误: