gpt4 book ai didi

java - Oracle 包或函数...处于无效状态

转载 作者:行者123 更新时间:2023-12-02 04:22:50 25 4
gpt4 key购买 nike

我坚持使用 Oracle 存储过程调用。代码看起来很简单,但我真的不知道如何让它工作。这是我用于创建过程的代码

DELIMITER @@
CREATE OR REPLACE PROCEDURE updateAward(_total_amount in Number, _no_of_sales in Number, _agent in NUMBER, _id in NUMBER) AS
BEGIN
update Award set total_amount = _total_amount, no_of_sales = _no_of_sales, agent_id = _agent where ID = _id @@
commit @@

因此,当我通过 NetBean(这是我目前拥有的唯一工具)执行它时,代码运行良好。我还尝试运行编译语句

alter PROCEDURE updateAward compile;

然后使用

select *
from user_errors
where name = 'ORG_SPGETTYPE'

select返回空,证明编译过程没问题。但是,当我触发该过程时

call updateAward(1,1,1,1);

返回错误

Package or function UPDATEAWARD is in an invalid state

和命令

SELECT object_name FROM user_objects WHERE status='INVALID';

返回过程的名称。我该如何解决这个问题?

更新1:

如果我使用

BEGIN
updateAward(1,1,1,1);
End;

我遇到错误

    Error code 6550, SQL state 65000: ORA-06550: line 2, column 20:
PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following:

:= . ( % ;

更新2:

我放置分隔符的原因是因为我遇到了“;”错误当通过某些VPN连接到其他网络时(仍然不确定为什么)。因此,我像您的答案一样更新了代码,但随后在过程末尾添加了 End; ,然后获取了 Invalid SQL statements1。如果我删除它并执行(通过 Netbean),该过程将成功创建。然而,编译并检查user_errors后,它得到了

"PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following:     ; "

最佳答案

<罢工>首先,您的过程语法看起来错误。不要使用DELIMITER因为该语法特定于 MySQL。相反,请尝试类似以下的操作。

CREATE OR REPLACE PROCEDURE updateAward(_total_amount in Number, _no_of_sales in Number, _agent in NUMBER, _id in NUMBER) AS
BEGIN
update Award set total_amount = _total_amount, no_of_sales = _no_of_sales, agent_id = _agent where ID = _id;
commit;
END;

<罢工>

首先,您的程序存在一些问题:

  1. 您没有正确使用分隔符。应该使用分隔符来终止整个过程,而不是每一行。

    NetBeans SQL 窗口不太了解 SQL,因此它无法判断过程何时结束以及其他操作何时开始。通常,它使用分号 ( ; ) 来告知一条语句何时结束而另一条语句何时开始,但存储过程中可以包含分号,这样就不起作用。相反,我们将分隔符更改为其他内容,以便 NetBeans SQL 窗口一次性将整个存储过程发送到数据库。

  2. 变量名称不允许以下划线开头 ( _ )。特别是 this Oracle documentation page 的架构对象命名规则列表中的规则 5指出

    Nonquoted identifiers must begin with an alphabetic character from your database character set.

    下划线不是字母字符。

我已经采用了您的程序,修复了分隔符的使用并添加了额外的 p到每个参数名称的前面( p 表示“参数”),我得到以下内容,它在 NetBeans 中成功运行并创建了一个没有错误的过程:

delimiter $$
CREATE OR REPLACE PROCEDURE updateAward(p_total_amount in Number, p_no_of_sales in Number, p_agent in NUMBER, p_id in NUMBER) AS
BEGIN
update Award set total_amount = p_total_amount, no_of_sales = p_no_of_sales, agent_id = p_agent where ID = p_id;
commit;
END;
$$
delimiter ;

其次,你写

[...] and then, use

select *
from user_errors
where name = 'ORG_SPGETTYPE'

The select return empty, proving that the compile process is ok.

嗯,不。这证明程序没有错误ORG_SPGETTYPE (或者不存在具有该名称的过程)。您的程序名为 updateAward ,Oracle 将其大写为 UPDATEAWARD 。尝试一下

select *
from user_errors
where name = 'UPDATEAWARD';

相反。

关于java - Oracle 包或函数...处于无效状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32549515/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com