I am trying to load data into mysql database using
LOAD DATA LOCAL INFILE A.txt INTO DB LINES TERMINATED BY \'|\';
the topic of this questi
Refer to MySQL 8.0 Reference Manual -- 6.1.6 Security Issues with LOAD DATA LOCAL
On the server side, run
mysql.server start --local-infile
On the client side, run
mysql --local-infile database_name -u username -p