admin管理员组文章数量:1355068
Is it possible to prohibit changes to the source code of Oracle stored object in case of compile errors?
something like
create or replace procedure test is
n number;
begin
select 1 into n from dual;
end test;
/
Procedure created
set magic on
create or replace procedure test is
n number;
begin
select 1 into n from dual11111111111;
end test;
/
Procedure will be invalid, its code has not changed
本文标签: Oracle automatic precheck of stored object replacementStack Overflow
版权声明:本文标题:Oracle automatic precheck of stored object replacement - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743952792a2567595.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论