ORA-01480(转载)

转载自:http://blog.csdn.net/annicybc/article/details/1495493

ORA-01480

trailing null missing from STR bind value

Cause

A bind variable of type 5 (null-terminated string) does not contain the terminating null in its buffer.

Action

Terminate the string with a null character

原因分析: 导致出现该问题的可能是由于寄主程序的变量设定的太短,导致SQL(PRO*C)取出的字段被截断,最后该字段对应的变量在赋值的时候无法找到结束字符。
解决方法:找出太短字段的设置,将变量设长。

[@more@]

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

转载于:http://blog.itpub.net/267897/viewspace-1061053/

你可能感兴趣的:(ORA-01480(转载))