If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
Additionally, You can use cursors or execute separate SQL statements. You can also avoid the files by directly piping the output of the query to a pager:
Code:
$ db2 "select ..." | less
__________________
Knut Stolze
IBM DB2 Analytics Accelerator
IBM Germany Research & Development
Additionally, You can use cursors or execute separate SQL statements. You can also avoid the files by directly piping the output of the query to a pager:
Code:
$ db2 "select ..." | less
Hi,
or on Windows...
Code:
$ db2 "select ..." | more
Pressing Enter list downs one row at a time. Pressing space list downs one page at a time.
Thanks,
Grofaty