DB2 中的异常/错误处理程序?

发布于 2024-12-08 16:45:55 字数 509 浏览 0 评论 0原文

我有一堆 SQL 脚本(带有 shell 脚本包装器)来卸载数据,所以

    EXPORT TO /tmp/out.csv OF DEL MODIFIED BY NOCHARDEL  COLDEL, DATESISO 
MESSAGES /tmp/out.msg SELECT WIDGETID
    ...

我想按照 Oracle 的方式向脚本添加错误处理程序:

WHENEVER SQLERROR EXIT FAILURE;
SPOOL  /tmp/out.csv;
SELECT WIDGETID...
SPOOL OFF;

根据 DB2 的文档,这可以在存储过程、C、Perl 中完成,REXX,没有别的...

这如何在 SQL 脚本中完成?

我正在运行 DB2/LINUXX8664 9.7.2。

I have a bunch of SQL scripts (with shell script wrappers) to unload data like so

    EXPORT TO /tmp/out.csv OF DEL MODIFIED BY NOCHARDEL  COLDEL, DATESISO 
MESSAGES /tmp/out.msg SELECT WIDGETID
    ...

I want to add an error handler to the script the way Oracle does it:

WHENEVER SQLERROR EXIT FAILURE;
SPOOL  /tmp/out.csv;
SELECT WIDGETID...
SPOOL OFF;

According to DB2's documentation, this can be done in stored procedures, C, Perl, REXX, and nothing else...

How can this be done in SQL scripts?

I am running DB2/LINUXX8664 9.7.2.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

り繁华旳梦境 2024-12-15 16:45:55

您可以使用 DB2 命令行命令处理器并获取其返回代码。 http://publib.boulder.ibm.com/infocenter/db2luw/v9r5/topic/com.ibm.db2.luw.admin.cmd.doc/doc/r0010411.html

或您可以使用 SYSPROC.ADMIN_CMD 过程并使用其返回码。 http://publib.boulder.ibm.com/infocenter/db2luw/v9r5/topic/com.ibm.db2.luw.sql.rtn.doc/doc/r0023573.html

您可以将存储的过程调用放入脚本文件中并运行诸如 db2 -tvf runexport.txt 之类的内容,或者将 db2 命令放入 Linux 中脚本文件并使用 linux 脚本 foo 来处理 db2 返回代码。

you could use the DB2 command line command processor and get its return code. http://publib.boulder.ibm.com/infocenter/db2luw/v9r5/topic/com.ibm.db2.luw.admin.cmd.doc/doc/r0010411.html

or you could use the SYSPROC.ADMIN_CMD procedure and use its return codes. http://publib.boulder.ibm.com/infocenter/db2luw/v9r5/topic/com.ibm.db2.luw.sql.rtn.doc/doc/r0023573.html

you could put the stored proc calls in a script file and run something like db2 -tvf runexport.txt or put the db2 commands in a linux script file and use linux scripting foo to handle the db2 return codes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文