Hi everyone,
I'm trying to load data to snowflake using bulkload. If new data has not enough columns match table then I received error
Error: Output Data (23): The COPY failed with error: Number of columns in file (124) does not match that of the corresponding table (128), use file format option error_on_column_count_mismatch=false to ignore this error
File 'sometable_bde58800b7e54b238dfb37f3af4162.gz', line 2, character 1
Row 1 starts at line 1, column "TABLE_NAME"["feature_abc":124]
If you would like to continue loading when an error is encountered, use other values such as 'SKIP_FILE' or 'CONTINUE' for the ON_ERROR option. For more information on loading options, please run 'info loading_data' in a SQL client.
How can i continuely load data skip the error. Missing fields will be NULL like ODBC missing fields
Thanks and Happy new year!