Importing sql dump to the server through SSH
mysql -h<host> -u<user> -p<pass> <datebase> < sqlfile.sql
Exporting sql dump through SSH
mysqldump -h<host> -u<user> -p<pass> <datebase> > sqlfile.sql
no spaces between flags and values.