Hi,
My problem is as follows :
On my database I have a view that is currently casting a date as char(10). The reason for this so that i can see the dates in SQL server (0001/01/01). Now what seems to be happening, is that on the cast, my date format is getting messed around, ie : from yyyy-mm-dd i am now only getting yy-mm-dd in the text field.
Using SQL server, i could overcome this problem by replacing the CAST with a CONVERT, but I don't know how to do this in DB2.
Any ideas?