Tag Archives: mysqldump

Step By Step Upgrade Piwik From 1.2 To 1.4 Posted by in Resources | Leave a comment

I’ve just upgraded my Piwik web analytics system this afternoon. It was not a long and complex process however it still have some things you should take note whenever you want to upgrade to a new version. Continue reading

Schedule Backup And Zip MySQL Database In Windows Posted by in MySQL | 4 Comments

Creating a job to schedule backup databases automatically is a very important task for each database administrator. Database is always irreplaceable and is the heart of all online business therefore this process must be the first thing in the process of database administrating to ensure it’s super safe. Continue reading

MySql backup database with gzip compression Posted by in MySQL | 5 Comments

This example will help you know how to backup one or multi MySQL database using mysqldump command. If your database is very big, you may need to compress the backup sql file. To do that, you can use gzip compression to pipe the output to gzip then you will get the output as gzip file. Continue reading

Shell script backup all Mysql Databases in Linux Posted by in Linux, MySQL | 1 Comment

This shell script will backup all current Mysql databases, compress(gzip) them and put them in a new folder named by current date (one directory per database). Continue reading

MySQL dump table Posted by in MySQL | Leave a comment

How to backup and restore a single table using MySQLDump with default-character-set utf 8
1. Backuping a single table from a database
2. Restoring the table into another database Continue reading