PKPChuck,
I don't know if there is any way of converting timestamp in Oracle into ISO compilant format. Try looking CHAR function or something like that.
But if you can't get data into correct format you can do that with SQL inside DB2. So import data to DB2 table and then execute select statement to get correct data.
Sample:
create table admin.tab (col1 char(20))
insert into admin.tab values ('27-FEB-08')
select timestamp('20' concat substr(col1,8,2) concat '-' concat case substr(col1,4,3) when 'JAN' THEN '01' WHEN 'FEB' THEN '02' END concat '-' concat substr(col1,1,2) concat '-00.00.00.000000') from admin.tab
The output is: 2008-02-27-00.00.00.000000
Note: continue case syntax for all months.
Hope this helps,
Grofaty