In SQL Server I store a datetime as a DateTimeOffset data type so the table values contain the UTC offset. For Example:
2020-05-24 14:20:18.0000000 -05:00
However, once I import into Snowflake (via Fivetran) the value is converted to UTC. For Example:
2020-05-24 19:20:18.000 +0000
How can I maintain the source value after importing into Snowflake without converting to UTC?
Notice that Snowflake has 3 different timezone types, including
TIMESTAMP_LTZ
andTIMESTAMP_TZ
.Use
TIMESTAMP_TZ
to store the associated time zone offset.https://docs.snowflake.com/en/sql-reference/data-types-datetime.html#timestamp-ltz-timestamp-ntz-timestamp-tz