Answers for "Error Code: 3948. Loading local data is disabled; this must be enabled on both the client and server sides"

SQL
1

loading local data is disabled mysql

mysql> set global local_infile=true;
Posted by: Guest on January-06-2021
0

ERROR 3948 (42000) at line 1: Loading local data is disabled; this must be enabled on both the client and server sides

#set the global variables by using this command:
mysql> SET GLOBAL local_infile=1;
Query OK, 0 rows affected (0.00 sec)

#exit current server:
mysql> exit

#try again and the error should be gone
Posted by: Guest on September-25-2021

Code answers related to "Error Code: 3948. Loading local data is disabled; this must be enabled on both the client and server sides"

Code answers related to "SQL"

Browse Popular Code Answers by Language