MySQL을 처음 접했고 Windows에서 실행 중입니다. MySQL의 덤프 파일에서 데이터베이스를 복원하려고하는데 다음 오류가 발생합니다.
$ >mysql -u root -p -h localhost -D database -o < dump.sql
ERROR: ASCII '\0' appeared in the statement, but this is not allowed unless option --binary-mode is enabled and mysql is run in non-interactive mode. Set --binary-mode to 1 if ASCII '\0' is expected. Query: 'SQLite format 3'.
나는 시도 $ > mysql -u root -p -h localhost -D database --binary-mode -o < dump.sql
했지만 이것은 나에게 ERROR at line 1: Unknown command '\☻'.
500Mb 덤프 파일이며 gVIM을 사용하여 내용을 볼 때 이해할 수없는 표현식과 데이터 만 볼 수 있습니다. 또한 파일에서 내용을 복사하여 여기에 게시하려고하면 복사 할 수있는 모든 것이 있습니다. SQLite format 3
이 종류는 이상하게 보입니다.
.sql
되어 이상한 문자와 인코딩이 있는 파일이 생성되었다고 생각합니다 . 두 번째 시도는 잘 작동했습니다.