www.openfuturo.com - MySQL http://openfuturo.com/taxonomy/term/11/0 en MySQLDump Script Snippets http://openfuturo.com/mysqldump/snippets <p>The following are three script snippets to use for database backup procedures:</p><p><a href="http://openfuturo.com/mysqldump/snippets" target="_blank">read more</a></p> Aaron Calderon MySQL mysqldump scripts snippets Public Tue, 21 Jul 2009 03:10:15 +0000 Aaron Calderon 17 at http://openfuturo.com MySQL Dump Command http://openfuturo.com/mysqldump <p>To back up a big MySQL server use the following on the command line:</p> <p>&nbsp;mysqldump --all-databases --add-drop-table -c -u -p | bzip2 -c &gt; .bak.sql.bz2 </p> <p>It will use mysqldump and it will compress the sql file. You will backup the entire server with this command.</p> Aaron Calderon databaseBackup dbBackup MySQL mysqldump Public Tue, 19 May 2009 05:08:31 +0000 Aaron Calderon 5 at http://openfuturo.com