i know how to import an sql file via the cli:
mysql -u USER -p DBNAME < dump.sql
but that's if the dump.sql file is local. how could i use a file on a remote server?
|
|
|
|
|
|
|
You didn't say what network access you have to the remote server. Assuming you have SSH access to the remote server, you could pipe the results of a remote mysqldump to the mysql command. I just tested this, and it works fine:
I put stuff like user, password, host into
Finally, you can pipe through
|
||
|
|
|
|
I'd use wget to either download it to a file or pipe it in. |
||
|
|
|
|
You must ssh into the remote server and run the mysql client there. |
||
|
|