제가 작성한 텍스트 파일을 DB에 업로드 하기 위해 다음과이 행했습니다.
처음시도..
load data local infile '파일경로와 이름' replace into table 테이블이름
fields terminater by ' ';
두번째시도..
load data local infile '파일경로와 이름' into table 테이블이름;
이와같이 두가지로 시도를 했는데 다음과 같은 에러가 나왔습니다.
ERROR 1148: The used command is not allowed with this MySQL version
참고로 저는 루트권한이 없습니다....
많은 조언 부탁드립니다...