ORA-27456: not all arguments of program “string.string” have been defined
Cause: The number_of_arguments attribute of the named program did not match the actual number of arguments that have been defined.
Action: Define as many arguments as the number of arguments, or change the number of arguments.
这是一个由 Oracle 抛出的SQL语句错误,当使用sql中的string函数时抛出此错误表示函数参数不足。
ORA-27456 :not all arguments of program “string.string” have been defined
该错误指出您尝试使用字符串函数(由PL / SQL内置库内含)时,其中有一个或多个参数没有被定义。由于PL / SQL内置库中的字符串函数需要有定义的参数,因此发生此错误。
尝试使用string.length()函数时,没有设置第一个字符串参数
1.要解决此错误,您需要检查其参数并确保每个参数都已经定义。
2.更改PL / SQL查询,确保每个参数都有定义。
3.再次提交PL / SQL查询,如果没有任何参数未定义,确认查询是否已成功执行。