Hi ALL
I used function FROM_TZ to convert British summer time to EST using the below query.
select FROM_TZ (TO_TIMESTAMP (TO_CHAR (sysdate - 1, 'mm/dd/yyyy hh24:mi:ss'),
'mm/dd/yyyy hh24:mi:ss'
),
'BST'
) at time zone 'EST5EDT'
from dual;
ORA-01882: timezone region not found
01882. 00000 - "timezone region %s not found"
*Cause: The specified region name was not found.
*Action: Please contact Oracle Customer Support.
Why it is not recognizing BST time zone.. or am I missing something?