Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Oracle 中,我们可以打印输出,dbms_output.put_line()但我不知道在 DB2 中做同样的事情。
dbms_output.put_line()
我目前signal用于在调试时打印一些消息。
signal
您可以将一行存储在永久调试表或已声明的全局临时表 (DGTT) 中。您还可以编写一个简单的 Java 存储过程,将一行文本存储到一个文件中。
当 DB2 9.7 发布时(2009 年 6 月的某个时间),它将自动附带 dbms_output 特性,作为 DB2 新的“SQL 方言”支持(也称为 Oracle 兼容性)的一部分。
你可以做:
select 'message' from sysibm.sysdummy1;