본문 바로가기
트러블슈팅

[MySQL] Error 3948 _데이터 로드 오류

by 준쓰_ 2024. 2. 18.

오류 유형

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


 

오류 설명

  • local_infile 설정 에러
  • 외부에서 table 내에 데이터를 import 할 때 발생하는 에러
  • 권한 설정  필요

 

해결방안

  • 아래 코드 입력 (두 개 모두 입력)
    • show global variables like "local_infile";
    • set global local_infile = true;
  • 이후 데이터 로드 코드 삽입

 

예시