aiaiDBA

加微信获取免费职业规划+学习资料,了解年薪50万的DBA是如何练成的

13718043309

010-86462881

PLS-00227: subprogram 'in' formal string is not yet denotable

PLS-00227: subprogram 'in' formal string is not yet denotable
Cause: When the formal parameters of a subprogram were declared, one parameter was used to initialize another, as in PROCEDURE my_proc (j NUMBER, k NUMBER := j) IS ... The first parameter has no value until run time, so it cannot be used to initialize another parameter.
Action: Remove the illegal formal parameter reference.

请先 登录 后评论

1 个回答

小智
PLS-00227:正式字符串中的子程序尚未被表示,
.原因:当子程序的形式参数被声明时,使用一个参数来初始化另一个参数,如PROCEDURE my_proc(j NUMBER,k NUMBER:= j)IS ...第一个参数在运行时间之前没有值,所以它不能用于初始化另一个参数。,
.操作:删除非法的参数参考。,
.
请先 登录 后评论