views:

67

answers:

4

are there any Free tools to generate tables diagrams with postgresql?

A: 

Inside Eclipse I've used the Clay plugin (ex Clay-Azurri). The free version allows to introspect ("reverse engineer") an existing DB schema (via JDBC) and make a diagram of some selected tables.

leonbloy
A: 

I love schemaspy for schema visualisations. Look at the sample output they provide, and drool. Note the tabs!

Jurgen
A: 

SchemaCrawler for PostgreSQL can generate database diagrams from the command line, with the help of GraphViz. You can use regular expressions to include and exclude tables and columns. It can also infer relationships between tables using common naming conventions, if not foreign keys are defined.

Sualeh Fatehi