I am trying to import a CSV file to a new table in MySql. The file has 1 million rows but MySql is only importing 847 rows.
- I tried saving the CSV file and importing various formats, utf-8, windows-1205, etc.
- The CSV file has an INDEX column with sequential numbers that can be used as a primary key.
- There are no invalid characters, such as commas.
- I copied the CSV file and deleted the first 847 and imported it again, and it imported the next 26 rows. This shows that there is nothing wrong with the data and it could have imported it originally.
Why won't the MySql Workbench import all million rows?



