Question

I'm trying to import a csv file to mysql, everything is working fine except i'm missing some rows. Once the import is done I apply the table and it gives me an error "33 errors saving changes to table..."

I have 1636 rows, when i click apply the table is imported and I can select from it except it's missing 33 rows, the error message doesn't tell me what's wrong.

Était-ce utile?

La solution

You can use both SHOW ERRORS and SHOW WARNINGS to see what goes wrong when running your queries.

For example,

SHOW ERRORS;

Would show the errors for the last batch of SQL statements you executed.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top