MYSQL infile settings are updated to 'ON' state in config file, and verified via the show variable command.
show global variables like 'local_infile';
Variable_name|Value|
-------------|-----|
local_infile |ON |
I am able to load data from client machine using the below sql code.
LOAD DATA local INFILE 'D:/test.csv'
INTO TABLE testtable
But when I try to run the same code in my MYSQL server/machine it throws the error as below:
SQL Error [3948] [42000]: Loading local data is disabled; this must be enabled on both the client and server sides
How can I load files from client as well as within server too ? Is it a config issue or does user need some extra rights.