login into your webhost using ssh.
enter your username/password for the webhost
type below mysql command.
mysql -uUSERNAME –pPASSWORD DATABASENAME > MYDATABASE.sql
eg : username:root password:pwd databsename:mydb
mysql -uroot -ppwd mydb > mybackup.sql
above command will take the backup of mydb into mybackup.sql file.
u can use mysqldump comand also
mysqldump -uusername -ppassword database name > export.sql
Learn to Develop an iPhone or iPad App in 4 Weeks Learn the latest and greatest markup language in the market with Robin Nixon(HTML & HTML5) Now $29 Only(75% Off)
login into your webhost
Sun, 06/22/2008 - 19:18 — adminlogin into your webhost using ssh.
enter your username/password for the webhost
type below mysql command.
mysql -uUSERNAME –pPASSWORD DATABASENAME > MYDATABASE.sql
eg : username:root
password:pwd
databsename:mydb
mysql -uroot -ppwd mydb > mybackup.sql
above command will take the backup of mydb into mybackup.sql file.
u can use mysqldump comand
Thu, 06/26/2008 - 17:21 — Anonymousu can use mysqldump comand also
mysqldump -uusername -ppassword database name > export.sql