ORA-06502:PL/SQL:数字或值错误:数值精度太高

今天在查看Oracle中Job后台运行的记录时,发现日志表中一直在报ORA-06502:PL/SQL:数字或值错误:数值精度太高

经判断是Number类型的使用不当。

number数据类型

number类型的语法很简单:number(p,s):

  • p:精度位,precision,是总有效数据位数,取值范围是38,默认是38,可以用字符*表示38。

  • s:小数位,scale,是小数点右边的位数,取值范围是-84~127,默认值取决于p,如果没有指定p,那么s是最大范围,如果指定了p,那么s=0。

p:isthe precision,or the total number of digits. Oracle guarantees the portabilityof numbers with precision ranging from 1 to 38.

s:isthe scale, or the number of digits to the right of the decimal point. The scalecan range from -84 to 127.

结论:在Oracle中使用Number类型时候,请一定保证其合适的精确度。

你可能感兴趣的:(Oracle)