Is there a something I am missing with LOCAL DATA INFILE?
My sql code,
LOAD DATA
IGNORE INFILE
'./infile.txt'
INTO TABLE table
FIELDS TERMINATED BY '\t'
LINES STARTING BY '\n'
The infile.txt is in the same directory as this script, I cannot use LOCAL my server won't let me, why is it not working? Is there a way I can check to see if I have it enabled?
I can run LOCAL from inside phpMyAdmin and the code works but only inserts 46 rows of about 500,000!
Thanks :)