WTB method of backing up a large forum database?

Status
Not open for further replies.
11 comments
mysql -u username -p password database-name > database-name.sql | gzip -9 database-name.sql

if you have SSH of course
 
I would recommend mysql dumper works great for me
mysql dumper cause freezing of my server maybe cause my db is large.
for mysql use bigdump i think that it's the best and easiest way. ;)
i didn't use this script before, i'll try it.

mysql -u username -p password database-name > database-name.sql | gzip -9 database-name.sql

if you have SSH of course
does this method valid for forum database with utf encode?
or it may cause a problem?

thanks
 
if you got root access. then locate mysql folder and take a copy of all *.MYI files in it.
if u want, u can gzip entire folder content. going for mysqldump is bad idea as it will take more time and more resource
 
maybe i'm not remembering correctly but i thought BigDump was useful only for large database import, not for export. Use mysqldumper for export.
 
Status
Not open for further replies.
Back
Top