gpt4 book ai didi

oracle - 如果 DB Oracle 中存在删除过程

转载 作者:行者123 更新时间:2023-12-04 13:27:18 24 4
gpt4 key购买 nike

有人可以告诉我如何在 Oracle 中删除 PROCEDURE,但前提是它存在吗?

DROP PROCEDURE IF EXISTS XYZ;

以上是行不通的。

最佳答案

如果您的目标是消除脚本中的错误消息,那么您可以尝试

begin
execute immediate 'drop procedure xyz';
exception when others then
if sqlcode != -4043 then
raise;
end if;
end;
/

关于oracle - 如果 DB Oracle 中存在删除过程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21911251/

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