Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
It's normal that it don't gives you any progress.
You know it's finished when you have a cursor again.
As long as you don't have any errors, then everything is fine.
Normally, a 120 Mb dump should not take more than 3 to 5 minutes, on a decent server.
What you can do if you want to be explicitly told when the restore is finished, you can concatenate a command to be executed just after the import is finished:
Code:
mysql -uUSERNAME –pPASSWORD DATABASENAME < MYDATABASE.sql;clear;echo "Import completed";
This will blank the screen, and add an "import completed" message in the terminal.
__________________
Only a biker knows why a dog sticks his head out the window.
|