Thanks TONKUMA
I still have one issue.
When i execute the following query.. it executes fine..
SELECT TO_CHAR(TIMESTAMP('1970-01-01 00:00:00' ) + (COALESCE(ISTUDY_DATE_TIME,0) + 5 * 60 * 60 + 30 * 60) Second, 'YYYY-MM-DD HH24:MI

S') From TABLE1
Whereas when i change the date format and execute, it is throwing me SQL0171N Error..
SELECT TO_CHAR(TIMESTAMP('1970-01-01 00:00:00' ) + (COALESCE(ISTUDY_DATE_TIME,0) + 5 * 60 * 60 + 30 * 60) Second, 'DD/MM/YYYY HH24:MI

S') From TABLE1