C cmasters Registered Oct 17, 2001 #1 Just wondering if anyone has a good way to do this...I need a program, or at least a way to get my MySQL databases to back up daily and am wondering what the best way is to go about this. Comments? Suggestions?
Just wondering if anyone has a good way to do this...I need a program, or at least a way to get my MySQL databases to back up daily and am wondering what the best way is to go about this. Comments? Suggestions?
N NuCleuZ Registered Oct 17, 2001 #2 mysqldump -u root -h localhost -p[password] DB_name > backup/mysql/DB.sql This works for me anyway. You can make a .login file where you put that in, and it'll get executed whenever you log in. NuCleuZ
mysqldump -u root -h localhost -p[password] DB_name > backup/mysql/DB.sql This works for me anyway. You can make a .login file where you put that in, and it'll get executed whenever you log in. NuCleuZ