Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to generate Entity-Relation diagram from SQL DDL? [closed]

For example DbVisualizer can be used to connect to a DB and create nice diagram out of existing tables and their relations. But in this specific case I do not have a live database but I have bunch of create table and alter statements.

Is there any tool to generate similar diagrams out of SQL DDL?

like image 219
Petteri H Avatar asked May 08 '09 20:05

Petteri H


2 Answers

I found the MySQL tool MySQL Workbench to do a great job. There is a Mac OS X version. More information can be found at http://dev.mysql.com/doc/index-gui.html.

like image 78
ahalls Avatar answered Oct 15 '22 11:10

ahalls


SQLFairy will generate graphics from plain SQL DDL files:

http://sqlfairy.sourceforge.net/

like image 43
Joshua Orvis Avatar answered Oct 15 '22 09:10

Joshua Orvis