MSCEWI3017
DBTimezone removed.
This is a deprecated version of the SnowConvert documentation, please visit the official site HERE.
Severity
Low
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
/*** MSC-WARNING - MSCEWI3017 - DBTIMEZONE REMOVED ***/
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