-
Hi All I am trying to run The tables are created in Snowflake 'ts_cluster', 'ts_column_synonym', 'ts_data_source', 'ts_dependent_object', 'ts_group', 'ts_group_privilege', 'ts_metadata_column', 'ts_metadata_object', 'ts_org', 'ts_sharing_access', 'ts_tag', 'ts_tagged_object', 'ts_user', 'ts_xref_org', 'ts_xref_principal' But while inserting data from temp csv to SF it is giving error Given that the CREATED column in ts_users is of type TIMESTAMP_NTZ(9), it means that the timestamp should not include time zone information. However, CSV file contains timestamps with a time zone offset (+00:00). I tried changing the table definition to TIMESTAMP_TZ but it still fails with same message? Is this a bug? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@kazi-ps for your syncer definition, do you specify |
Beta Was this translation helpful? Give feedback.
@boonhapus - I updated syncer.py file where the file format is defined and added this option
TIMESTAMP_FORMAT = 'YYYY-MM-DD HH24:MI:SS TZH:TZM'
This resolved the issue