Stressman,
You cannot format a timestamp. Under DB2 it has one format only YYYY-MM-DD-hh.mm.ss.zzzzzz
For dates fields, you have more control, you can for instance SELECT CHAR(DATE_COL,format)
where the first argument is the column name and the second argument is the format. The following formats are supported:
Name Layout Example
ISO yyyy-mm-dd 1987-10-12
USA mm/dd/yyyy 10/12/1987
EUR dd.mm.yyyy 12.10.1987
JIS yyyy-mm-dd 1987-10-12
You can also have a LOCAL format which is a user written exit to define the date exactly how you wish.
HTH Marc