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:
- Letters where there should be numbers
- Inconsistently formatted dates
- Text fields longer than allowed by the column in the table
- Too many, or not enough, commas
- Bad field escaping: In CSV when you want to write
Stephen "The Rifleman" Flemmi
you must write Stephen ""The Rifleman"" Flemmi
doubling the quote characters.