-
Notifications
You must be signed in to change notification settings - Fork 7
MySQL csv 넣기
Jisoo edited this page Feb 8, 2023
·
2 revisions
LOAD DATA LOCAL INFILE "FILE_PATH" INTO TABLE DBNAME.TABLE_NAME FIELDS TERMINATED BY ",";
ERROR 3948 (42000): Loading local data is disabled; this must be enabled on both the client and server sides
mysql> show global variables like 'local_infile';
mysql> set global local_infile=true;
이걸 입력하면 OFF 가 ON으로 바뀐다.
ON으로 바뀐 것을 확인 했으면 exit한 후 다시 접속해준다.
그 후 실행 방법처럼 다시한번 시도하면 된다.