Feb 15, 2004 #1 Kdawg22 Programmer Joined Feb 10, 2004 Messages 4 Location US I have a backup of a mysql database that i made using cpanel, then i changed hosts and now im using ensim. How can i restore this backup now?
I have a backup of a mysql database that i made using cpanel, then i changed hosts and now im using ensim. How can i restore this backup now?
Feb 17, 2004 #2 PCSAARON Programmer Joined Jul 9, 2002 Messages 131 Location US The best way to backup and restore is using the mysqldump command and then using the outputted SQL to restore. Ex: mysqldump -u username -p -h192.168.10.1 databasename > sqlfilename.sql Aaron Upvote 0 Downvote
The best way to backup and restore is using the mysqldump command and then using the outputted SQL to restore. Ex: mysqldump -u username -p -h192.168.10.1 databasename > sqlfilename.sql Aaron