I am using this code to import my data from csv to mongodb:
./mongoimport -d <db_name> -c <collection_name> --type csv --file <file_location/file.csv> --headerline
But I get the following error:
Failed: line 1, column 2446: extraneous " in field
How to resolve this issue?