tags:

views:

45

answers:

2

Hi

What is the best way to backup very large MySQL database (Gigas of info)?

+1  A: 

mysqldump is generally the best and fastest way to backup a database, since it is a tool thats delivered with mysql rightaway.

JochenJung
A: 

Depending on the database engine if you are using MYISAM or ARCHIVE tables you can use mysqlhotcopy which allows for backing up the tables without having to shut down MySQL

http://dev.mysql.com/doc/refman/5.1/en/mysqlhotcopy.html

David Young