ORA-23351: parameter datatype string for procedure string not supported ORACLE 报错 故障修复 远程处理

文档解释

ORA-23351: parameter datatype string for procedure string not supported

Cause: The procedure has a parameter whose datatype is not supported by repcat.

Action: Remove the parameter from the procedure, or alter the parameter to have one of the supported datatypes.

ORA-23351:表示用于存储过程的参数的数据类型无法识别。

官方解释

常见案例

1. 在调用存储过程时,变量含有不受支持的数据类型。

2. 非法java型参数使用数据库函数。

3. 内部程序参数使用不受支持的数据类型。

一般处理方法及步骤

1. 正确指定存储过程参数的数据类型;

2. 改变不支持的变量并正确声明数据类型;

3. 使用符合标准的字符串类型作为参数以调用存储过程;

4. 正确指定java型参数并使用符合标准的数据类型;

5. 正确指定程序参数的数据类型。


数据运维技术 » ORA-23351: parameter datatype string for procedure string not supported ORACLE 报错 故障修复 远程处理