I just found out that Oracle8 does not support the CAST expression. The following works quite nicely in 9i:
Is there a guru who can tell what the equivalent would be in Oracle 8?
Ties Blom
Code:
CASE WHEN DS_PENDING_JOB.JOB_STATUS In (2, 3, 4, 6, 1006) THEN to_date(null) ELSE (from_tz(CAST(to_date('15/12/1970','DD/MM/YYYY')+(DS_PENDING_JOB.START_DATETIME/(24*60*60)) as TIMESTAMP), 'GMT') AT LOCAL) END
Is there a guru who can tell what the equivalent would be in Oracle 8?
Ties Blom