ORA-23348: cannot replicate procedure string; only IN parameters supported
Cause: Trying to generate replication support for a package that has a procedure with OUT or IN OUT parameters.
Action: Remove the procedure from the package, or remove the OUT or IN OUT parameters from the procedure.
?
ORA-23348是由于程序的参数类型不正确而引发的一个错误,具体表示为:不支持复制字符串;只支持IN参数。
(1)确保所使用的所有参数类型为IN类型;
(2)确保使用的参数数量正确;
(3)如有必要,请检查参数名是否正确;
(4)检查过程是否包含内部变量或参数;
(5) 尝试从内存中重新生成该过程;
(6)如果以上步骤皆未给予解决,可尝试通过其他官方文档途径,从官方获取更深入的说明。