Hi,
I am attempting to upload a file found on my local computer to an online database (mysql). Here is my sql statement:
LOAD DATA LOCAL INFILE 'C:\\a.csv'
INTO TABLE TableA
FIELDS TERMINATED BY ','
LINES TERMINATED BY '\n'
I get the error message "File not found (Errcode: 2)"
Can anyone be of assistance?