Convert your MySQL schema to a Dia Diagram

Written by James McDonald

April 25, 2013

Do this Creating DIA diagrams from mysql via XSLT

The XSLT

(echo "<root>";
mysql --user=root -p -A -D maps \
-e 'desc assigned_tos  ; \
desc map_histories; \
desc map_types; \
desc maps' -X |\
grep -v "<?xml" ;\
echo "</root>") > /tmp/tmp.xml
xsltproc sql2dia.xsl /tmp/tmp.xml |\
  gzip -c > file.dia

In 2013 the original post still works fine:

I added relationships and got this diagram:

db_dia

Incidentally the naming conventions for the schema above comes from the CakePHP Database Conventions. I’ve always found it challenging to have sensible database table and field conventions but CakePHP has a good method of naming its Database Schema which makes sense to me.

 

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…

Clear HSTS Settings in CHrome

Open chrome://net-internals/#hsts enter the domain in the query field and click Query to confirm it has HSTS settings...

Ubuntu on Hyper-v

It boils town to installing linux-azure # as root or sudo apt-get update apt-get install linux-azure...