I'm trying to upload .csv files to MySQL, but when uploading the file does not load the complete records, for example from a file that contains 100 records only uploads 85. I would like to know if this error is some configuration on the server or something is wrong with the files. The instruction I use to upload the file is as follows:
LOAD DATA
LOCAL INFILE 'RUTA DEL ARCHIVO'
INTO TABLE PRUEBA
FIELDS TERMINATED BY ','
LINES TERMINATED BY '\N'
IGNORE 1 LINES;