Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/url/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Stored procedures ORA-06550从外部服务调用存储过程时出错_Stored Procedures_Oracle11g - Fatal编程技术网

Stored procedures ORA-06550从外部服务调用存储过程时出错

Stored procedures ORA-06550从外部服务调用存储过程时出错,stored-procedures,oracle11g,Stored Procedures,Oracle11g,我在DB包中创建了一个存储过程,它在表上执行插入操作,并从外部服务收到以下错误: error: ORA-06550: line 1, column 7: PLS-00801: internal error [22503] ORA06550: line 1, column 7: PL/SQL: Statement ignored buskgrdc.p_insertnewgrade() !!来源:Oracle.NET数据提供程序 我将测试程序更改为: PROCEDURE P_Inser

我在DB包中创建了一个存储过程,它在表上执行插入操作,并从外部服务收到以下错误:

error: ORA-06550: line 1, column 7: PLS-00801: internal error [22503]     ORA06550: line 1, column 7: PL/SQL: Statement ignored
buskgrdc.p_insertnewgrade()
!!来源:Oracle.NET数据提供程序

我将测试程序更改为:

 PROCEDURE P_InsertNewGrade IS

   BEGIN

     NULL

   END P_InsertNewGrade;
我仍然收到相同的错误消息。我正在外部服务中使用以下过程调用:

error: ORA-06550: line 1, column 7: PLS-00801: internal error [22503]     ORA06550: line 1, column 7: PL/SQL: Statement ignored
buskgrdc.p_insertnewgrade()
我使用的命令类型选项是存储过程。我可以登录到sqlplus并执行该过程而不会出错


提前感谢您的帮助

签出此-->请显示所有相关的客户端代码。另外,我假设上面的PL/SQL代码不是您实际编译的代码,因为您缺少一个分号,