Database
db2.asc
Associated article: Visual Tools for DB2
Tags: Database Tools
Source code examples accompanying the article by Gary Bist in which he uses Performance Monitor and Visual ExplainÂ-a pair visual performance evaulation tools that come with IBM'S DBÂ-to evaulate DB perfrmance.
_Visual Tools for DB2_
by Gary Bist
Example 1:
SELECT DISTINCT serialwkg, incnum, duedate, description
FROM incident i, empserv e
WHERE i.serialwkg=e.serial
AND duedate > '1996-9-01'
AND dept = 'S21'
GROUP BY serialwkg, incnum, duedate, ...


