I have a Laragon set up and have a 17G mysql dump to be imported to mysql. Since phpMyAdmin doesn't support such large file imports, is there a way to import such a large dump?
Asked
Active
Viewed 1.0k times
2 Answers
8
I finally found it...
cmd>cd <laragon_path>\bin
<laragon_path>\bin>mysql -u <user> -p <dbname> < <filename_with_path>;

Lakmal Premaratne
- 1,159
- 7
- 18
- 34
-
4To upgrade this answer: use the cmd from laragon – clod986 Mar 17 '20 at 13:21
0
I had to do something slightly different.
cmd>cd <laragon_path>\bin
<laragon_path>\bin>mysql -u <user> -D <dbname> < <filename_with_path>;

Sean
- 59
- 5