Best open source tool for database design / ERDs?

Started by dananrg@yahoo.comalmost 20 years ago33 messagesgeneral
Jump to latest
#1dananrg@yahoo.com
dananrg@yahoo.com

What open source tool do people here like for creating ER diagrams?

#2Ian Harding
iharding@destinydata.com
In reply to: dananrg@yahoo.com (#1)
Re: Best open source tool for database design / ERDs?

postgresql_autodoc and dia.

Show quoted text

On 28 May 2006 05:19:04 -0700, dananrg@yahoo.com <dananrg@yahoo.com> wrote:

What open source tool do people here like for creating ER diagrams?

---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faq

#3Tomi NA
hefest@gmail.com
In reply to: dananrg@yahoo.com (#1)
Re: Best open source tool for database design / ERDs?

I use the azzuri eclipse plugin. It's rudimentary, but get's the job
done for smaller (a couple of dozens of tables) models. It has a
commercial version which might be even better.

t.n.a.

Show quoted text

On 28 May 2006 05:19:04 -0700, dananrg@yahoo.com <dananrg@yahoo.com> wrote:

What open source tool do people here like for creating ER diagrams?

---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faq

#4Bjørn T Johansen
btj@havleik.no
In reply to: dananrg@yahoo.com (#1)
Re: Best open source tool for database design / ERDs?

Druid works ok....

http://druid.sourceforge.net/index.html

BTJ

On 28 May 2006 05:19:04 -0700
dananrg@yahoo.com wrote:

Show quoted text

What open source tool do people here like for creating ER diagrams?

---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faq

#5dananrg@yahoo.com
dananrg@yahoo.com
In reply to: Bjørn T Johansen (#4)
Re: Best open source tool for database design / ERDs?

Thanks. What about DIA - http://www.gnome.org/projects/dia/

...or DB Designer - http://fabforce.net/dbdesigner4/ (this one claims
to be feature-equivalent, or in the sphere of, products like Oracle's
Designer, ERWin, and Rational Rose.

#6Tomi NA
hefest@gmail.com
In reply to: Bjørn T Johansen (#4)
Re: Best open source tool for database design / ERDs?

On 5/29/06, Bjørn T Johansen <btj@havleik.no> wrote:

Druid works ok....

http://druid.sourceforge.net/index.html

Are there a couple of screenshots available on the net, a flash demo perhaps?

t.n.a.

#7Bjørn T Johansen
btj@havleik.no
In reply to: Tomi NA (#6)
Re: Best open source tool for database design / ERDs?

On Mon, 29 May 2006 14:43:19 +0200
"Tomi NA" <hefest@gmail.com> wrote:

On 5/29/06, Bjørn T Johansen <btj@havleik.no> wrote:

Druid works ok....

http://druid.sourceforge.net/index.html

Are there a couple of screenshots available on the net, a flash demo perhaps?

t.n.a.

Don't know...

BTJ

#8Thomas Kellerer
spam_eater@gmx.net
In reply to: dananrg@yahoo.com (#5)
Re: Best open source tool for database design / ERDs?

dananrg@yahoo.com wrote on 29.05.2006 13:06:

Thanks. What about DIA - http://www.gnome.org/projects/dia/

...or DB Designer - http://fabforce.net/dbdesigner4/ (this one claims
to be feature-equivalent, or in the sphere of, products like Oracle's
Designer, ERWin, and Rational Rose.

This is not maintained any longer (unfortunately because I really like it). And
the support for non-MySQL databases is nearly non-existing.

As the actual model is saved in XML I wrote an XSLT task to convert the
DbDesigner to an Oracle SQL script (CREATE TABLE....). It shouldn't be that hard
to adjust it for Postgres. If anyone is interested I can post it (the Oracle
version) here.

Regards
Thomas

#9dananrg@yahoo.com
dananrg@yahoo.com
In reply to: Thomas Kellerer (#8)
Re: Best open source tool for database design / ERDs?

Thanks Thomas. That's too bad about DB Designer. I didn't realize it
had been abandoned.

What do y'all think of DIA?

#10dananrg@yahoo.com
dananrg@yahoo.com
In reply to: dananrg@yahoo.com (#9)
Re: Best open source tool for database design / ERDs?

Anyone know if DIA will generate CREATE TABLE statements from an ER
diagram?

I'd like to have a program where I can create my db design, then be
able to instantiate the design in PostgreSQL as well as MySQL.

I'll pay for a good commercial tool if it costs less than USD $100.

Thanks.

#11Sean Davis
sdavis2@mail.nih.gov
In reply to: dananrg@yahoo.com (#10)
Re: Best open source tool for database design / ERDs?

You might look into Eclipse (the java-based IDE). It has at least one ERD
design plugin that allows graphical layout, editing of schema, and
generation of DDL directly from the schema. It works with many DB platforms
and is FREE!!!

Sean

On 6/1/06 5:44 AM, "dananrg@yahoo.com" <dananrg@yahoo.com> wrote:

Show quoted text

Anyone know if DIA will generate CREATE TABLE statements from an ER
diagram?

I'd like to have a program where I can create my db design, then be
able to instantiate the design in PostgreSQL as well as MySQL.

I'll pay for a good commercial tool if it costs less than USD $100.

Thanks.

#12Rich Shepard
rshepard@appl-ecosys.com
In reply to: Sean Davis (#11)
Re: Best open source tool for database design / ERDs?

On Thu, 1 Jun 2006, Sean Davis wrote:

You might look into Eclipse (the java-based IDE). It has at least one ERD
design plugin that allows graphical layout, editing of schema, and
generation of DDL directly from the schema. It works with many DB platforms
and is FREE!!!

Allow me to second that suggestion. I used one (whose name I don't recall)
from Azzurri in Japan. It was an easy installation into eclipse, allowed me
to design the schema and relations, then generated the postgres statements. I
used it on one project; haven't had the need since then (and that was 2.5
years ago).

Rich

--
Richard B. Shepard, Ph.D. | The Environmental Permitting
Applied Ecosystem Services, Inc.(TM) | Accelerator
<http://www.appl-ecosys.com&gt; Voice: 503-667-4517 Fax: 503-667-8863

#13Leif Jensen
leif@crysberg.dk
In reply to: dananrg@yahoo.com (#10)
Re: Best open source tool for database design / ERDs?

Hi,

tedia2sql will do the job: http://tedia2sql.tigris.org

Greetings,

Leif

On Thu, 1 Jun 2006 dananrg@yahoo.com wrote:

Show quoted text

Anyone know if DIA will generate CREATE TABLE statements from an ER
diagram?

I'd like to have a program where I can create my db design, then be
able to instantiate the design in PostgreSQL as well as MySQL.

I'll pay for a good commercial tool if it costs less than USD $100.

Thanks.

---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend

#14Erik Jones
erik@myemma.com
In reply to: dananrg@yahoo.com (#10)
Re: Best open source tool for database design / ERDs?

Dia itself is just a diagramming tool. However, there are a number of
apps at http://www.gnome.org/projects/dia/links.html that will take Dia
diagram files and generate db schemas for you...

dananrg@yahoo.com wrote:

Show quoted text

Anyone know if DIA will generate CREATE TABLE statements from an ER
diagram?

I'd like to have a program where I can create my db design, then be
able to instantiate the design in PostgreSQL as well as MySQL.

I'll pay for a good commercial tool if it costs less than USD $100.

Thanks.

---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend

#15dananrg@yahoo.com
dananrg@yahoo.com
In reply to: Erik Jones (#14)
Re: Best open source tool for database design / ERDs?

Thanks for all the great suggestions.

Dana

#16Sean Davis
sdavis2@mail.nih.gov
In reply to: dananrg@yahoo.com (#15)
Re: Best open source tool for database design / ERDs?

On 6/1/06 12:29 PM, "Tomi NA" <hefest@gmail.com> wrote:

On 6/1/06, Sean Davis <sdavis2@mail.nih.gov> wrote:

You might look into Eclipse (the java-based IDE). It has at least one ERD
design plugin that allows graphical layout, editing of schema, and
generation of DDL directly from the schema. It works with many DB platforms
and is FREE!!!

What's it called?

http://www.azzurri.jp/en/software/clay/

#17dananrg@yahoo.com
dananrg@yahoo.com
In reply to: Sean Davis (#16)
Re: Best open source tool for database design / ERDs?

Anyone here used both DIA and schema export extensions for it as well
as the Eclipse ERD plug-in for creating and exporting schemas - I mean
outputting DDL statements in PostgreSQL? Or Druid?

Which do you like best and why?

Thanks.

#18Dany De Bontridder
dany@alchimerys.be
In reply to: Sean Davis (#11)
Re: Best open source tool for database design / ERDs?

On Thursday 01 June 2006 15:39, Sean Davis wrote:

You might look into Eclipse (the java-based IDE). It has at least one ERD
design plugin that allows graphical layout, editing of schema, and
generation of DDL directly from the schema. It works with many DB
platforms and is FREE!!!

Would you mind give me the plugin name (or url) ?

TIA,

D.

#19Rich Shepard
rshepard@appl-ecosys.com
In reply to: Dany De Bontridder (#18)
Re: Best open source tool for database design / ERDs?

On Fri, 2 Jun 2006, Dany De Bontridder wrote:

On Thursday 01 June 2006 15:39, Sean Davis wrote:

Would you mind give me the plugin name (or url) ?

Dany,

It was mentioned yesterday; the name is 'clay' and if you aim your browser
at <http://www.azzurri.jp/en/software/clay/&gt; you can read all about it.

I found it easy to learn and use and quite effective. Of course, since then
I've stopped using eclipse. I'm back to emacs.

Rich

--
Richard B. Shepard, Ph.D. | The Environmental Permitting
Applied Ecosystem Services, Inc.(TM) | Accelerator
<http://www.appl-ecosys.com&gt; Voice: 503-667-4517 Fax: 503-667-8863

#20Michael Dean
mdean@sourceview.com
In reply to: Rich Shepard (#19)
Re: Best open source tool for database design / ERDs?

Rich Shepard wrote:

On Fri, 2 Jun 2006, Dany De Bontridder wrote:

On Thursday 01 June 2006 15:39, Sean Davis wrote:

Would you mind give me the plugin name (or url) ?

Dany,

It was mentioned yesterday; the name is 'clay' and if you aim your
browser
at <http://www.azzurri.jp/en/software/clay/&gt; you can read all about it.

I found it easy to learn and use and quite effective. Of course,
since then
I've stopped using eclipse. I'm back to emacs.

Rich

a caveat: I don't believe, from my reading of the license, that this is
an open source software product.

#21Rich Shepard
rshepard@appl-ecosys.com
In reply to: Michael Dean (#20)
#22Tomi NA
hefest@gmail.com
In reply to: Rich Shepard (#21)
#23Carlos Correia
carlos@m16e.com
In reply to: dananrg@yahoo.com (#10)
#24dananrg@yahoo.com
dananrg@yahoo.com
In reply to: Carlos Correia (#23)
#25dananrg@yahoo.com
dananrg@yahoo.com
In reply to: dananrg@yahoo.com (#24)
#26Kenneth Downs
ken@secdat.com
In reply to: dananrg@yahoo.com (#24)
#27Bjørn T Johansen
btj@havleik.no
In reply to: dananrg@yahoo.com (#24)
#28dananrg@yahoo.com
dananrg@yahoo.com
In reply to: Bjørn T Johansen (#27)
#29John Sidney-Woollett
johnsw@wardbrook.com
In reply to: dananrg@yahoo.com (#28)
#30dananrg@yahoo.com
dananrg@yahoo.com
In reply to: John Sidney-Woollett (#29)
#31Bjørn T Johansen
btj@havleik.no
In reply to: dananrg@yahoo.com (#30)
#32dananrg@yahoo.com
dananrg@yahoo.com
In reply to: Bjørn T Johansen (#31)
#33dananrg@yahoo.com
dananrg@yahoo.com
In reply to: dananrg@yahoo.com (#32)