csv_file:
|column_1 | Column_2 | Column_3 |
|===========================================|
|abc | xyz | 9/15/2020 1:28:00 AM |
I am trying to load a file from s3 to snowflake using following command:
COPY INTO table_name
FROM @stage/file_name.csv
FILE_FORMAT = (
type = csv
SKIP_HEADER = 1
)
FORCE = TRUE
ON_ERROR = Continue;
but while executing this query getting error as Timestamp '9/15/2020 1:28:00 AM' is not recognized. Is there any way so that I will be able to load the data to table without getting any error ?