当前位置: 首页 > 工具软件 > toNumber > 使用案例 >

ORA-06502: PL/SQL: numeric or value error: character to number conversion error错误的解决方法

麻鸿熙
2023-12-01

ORA-06502: PL/SQL: numeric or value error: character to number conversion error错误的解决方法

故障描述:
数据库日志报ORA-12012: error on auto execute of job 84
ORA-06502: PL/SQL: numeric or value error: character to number conversion error
ORA-06512: at "SALE8_QW.DAOHUOONLINE", line 34
ORA-06512: at line 2

解决方法:
1、找到存储过程DAOHUOONLINE,并将代码定位在34行,发现代码中两个字符串的变量使用了+进行赋值,如:contentBySms:=contentBySms+smsNote;
2、修改代码,将+替换成||,如:contentBySms:=contentBySms||smsNote,重新编译存储过程后,问题解决;

[@more@]

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/14663377/viewspace-1035482/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/14663377/viewspace-1035482/

 类似资料: