SQL脚本执行控制
我正在寻找如何控制大型 SQL 脚本的执行的技巧。它将包含各种DDL和DML语句。我主要是在寻找 DDL 控制。我真正的意思是,基本上我有一个脚本,其中包含从我们的数据库之一生成的多个 DDL 语句。当我启动脚本时,即使存在编译错误或创建错误,它也会执行。 感谢任何想法
I am looking for tips how to control execution of large sql script. It will contain various DDL and DML statement. Mostly I was looking for DDL control.What do I actually mean is, that basically I have a script with multiple DDL statements that are generated from one of our DBs. When I start script it will go through even if there is compilation error or error on create.
Thx for any ideas
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
出现错误后要退出吗?这里有几个例子。请务必检查每当 SQLERROR。
DDL (DML) 示例:
PL/SQL 子程序引发异常:
PL/SQL 单元编译失败:
Do you want to quit after an error ? Here is a few examples. Be sure to check documentation of WHENEVER SQLERROR.
DDL (DML) example:
PL/SQL subprogram raises an exception:
PL/SQL unit compilation fails: