Useful notes & manuals
from the
world wide web
L:
P:
Register now!
Importing sql dump to the server through SSH UNIX
Solution from: unknown Created by tlw on 13.10.2024 @ 04:15

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.

sql   ssh   dump   import   phpmyadmin
 
Created by THE LOST WEB © 2009-2012