Tag Archives: mysql

Take a dump – MYSQL

Real quick, this is how you do a mysql dump. You’ll need your password of course. It’s a great way to backup your database. # mysqldump -u USERNAME -h localhost -p YOUR_DB_NAME | gzip -9 > YOUR_DB_NAME.sql.gz

Posted in Solutions to Problems | Tagged , | Leave a comment

Strange text errors after MYSQL database transfer

I recently moved a database from one mysql server to another and ended up with some weird text. It seems that some characters were changed into some crazy text. Here’s what I found and here’s what I think they were … Continue reading

Posted in Solutions to Problems | Tagged , , , , , | 2 Comments