Skip to content
Advertisement

Different results for TO_TIMESTAMP_TZ and CAST AS TIMESTAMP WITH LOCAL TIME ZONE in Oracle DB

I have an Oracle 11g database and I’m trying to experiment with how DST is handled with TIMESTAMP datatypes (especially ones created from incoming data that doesn’t have a time zone included). I’m seeing a difference in behavior when using TO_TIMESTAMP_TZ() vs CAST(DATE as TIMESTAMP WITH LOCAL TIME ZONE) that I can’t explain. I would expect that the resulting datatype is a zoned timestamp regardless of how it is created and any operation on it would be identical but it does not appear that this is the case.

Any idea why when using the CAST option the “extra” hour created by the Fall DST change isn’t being taken into account in the INTERVAL math? I would expect both rows of the query below to be identical.

Query:

Results:

Advertisement

Answer

It looks like this comes down to the fact that TO_TIMESTAMP_TZ attempts to infer the TZD element of the TIMESTAMP from the date while CAST AS TIMESTAMP WITH LOCAL TIME ZONE will take the current TZD of the database regardless of when the date is. Or they just have different default behaviors for picking which of the 1AM times (pre or post time change) to choose. This difference in behavior is causing the resulting hour to be different by one.

Thanks ruudvan!

Query:

Results:

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement