I'm using Google Cloud Platform with Bitnamoi Lampstack 575e,
I can access PhpMyadmin and everything is ok.
I need to restore a backup from my old website which is 700K, I can't import it with the PHPMyAdmin because it is too big.
I restore that large sql backup into the localhost using the XAMPP console without problem.
I use the command:
mysql -u root -p
use my-database
source backup-db.sql;
And then:
ERROR:
Failed to open file 'backup-db.sql', error: 2
I tried with c:\backup-db.sql, "c:\backup-db.sql", 'c:\backup-db.sql', "c:/backup-db.sql"
, and all combinations. Its impossible to find the way. Any clue ?