Dobrica Pavlinušić's random unstructured stuff
MySQL: Revision 1
I don't like MySQL for various resons, most important one being that I saw PostgreSQL early on and never looked back.

Here are few quick commands to ease my pain:

{toc: }

^ Create grepable dump

Put every value in it's own line

.pre
mysqldump -u user -p database --extended-insert=0 > dump.sql
.pre