I am looking for a tool with that I can create a database ERD for a PostgreSQL Database.
In MySQL I use the tool "MySQL Workbench"
Do you know such a tool with that i can create a ERD. And from the ERD automatical create a sql-skript.
BG
I am looking for a tool with that I can create a database ERD for a PostgreSQL Database.
In MySQL I use the tool "MySQL Workbench"
Do you know such a tool with that i can create a ERD. And from the ERD automatical create a sql-skript.
BG
RISE is a freeware application that can model ERDs and even propagate it into the database layer.
I use DbWrench and Aqua Data Studio most often for these. There are many. See also: http://wiki.postgresql.org/wiki/Community_Guide_to_PostgreSQL_GUI_Tools
DbWrench also has a handy reverse synchronize, which allows you to compare a model with changes made on the server.
If you mean that you want to dump the schema as is, I would definitely use pg_dump --schema rather than going through a GUI.
If you mean that you want to modify the schema, then I most tools will support that.
I have no association with DbWrench or ADS.