콘텐츠로 이동

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

로컬에서 데이터를 불러오도록 설정이 되어있지 않음

  1. 로컬에서 데이터를 불러올 수 있도록 파라미터 수정 ```sql SET GLOBAL local_infile = 1;

    또는 DB 접속 시 해당 파라미터 값을 1로 넘김

    load_infile=1 ```