SSC-FDM-OR0017
DBTimezone was removed to use the default value of the Timestamp.
Description
DBTIMEZONE keyword was removed from the AT TIME ZONE expression.
Example Code
Input Code:
SELECT TIMESTAMP '1998-12-25 09:26:50.12' AT TIME ZONE DBTIMEZONE FROM DUAL;
Output Code:
SELECT
--** SSC-FDM-OR0017 - DBTIMEZONE WAS REMOVED TO USE THE DEFAULT VALUE OF THE TIMESTAMP **
TO_TIMESTAMP_LTZ( TIMESTAMP '1998-12-25 09:26:50.12')
FROM DUAL;
Recommendations
You may need to set the TIMEZONE session parameter in order to get equal results.
If you need more support, you can email us at snowconvert-support@snowflake.com
Last updated