4

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?

Isaac Bennetch
  • 11,830
  • 2
  • 32
  • 43
Lakmal Premaratne
  • 1,159
  • 7
  • 18
  • 34

2 Answers2

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
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