SSC-FDM-OR0017

DBTimezone was removed to use the default value of the Timestamp.

Important Notice: Migration of Documentation Website

Please be advised that our documentation website is currently undergoing a migration to a new platform. To ensure you have access to the most up-to-date information, we kindly request that you visit our new documentation website located at:

Official Snowflake Snowconvert Documentation

For any immediate assistance or if you encounter any issues, please contact our support team at [email protected].

Thank you for your understanding.

Description

DBTIMEZONE keyword was removed from the AT TIME ZONE expression.

Example Code

Input Code:

IN -> Oracle_01.sql
SELECT TIMESTAMP '1998-12-25 09:26:50.12' AT TIME ZONE DBTIMEZONE FROM DUAL;

Output Code:

OUT -> Oracle_01.sql
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 [email protected]

Last updated