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?