I am trying to import data from CSV with rows 1.7 million approx in MYSQL using bulk insert after importing I get only 1.04 million rows for all the tables.
I used
select count (*) from table_name;
command to check the number of rows.
for crosschecking the rows I used the pandas' module in python.
For an import job of that size, you'll be wise to break up your CSV into chunks of about 50,000 rows each, then import them one by one. Watch for errors on each import job, and COUNT(*) the rows after each one.
You will probably find some rows in your data did not load correctly. Some reasons:
Stephen "The Rifleman" Flemmi
you must writeStephen ""The Rifleman"" Flemmi
doubling the quote characters.