From: | Kenneth Downs <ken(at)secdat(dot)com> |
---|---|
To: | dananrg(at)yahoo(dot)com |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: Best open source tool for database design / ERDs? |
Date: | 2006-06-06 11:12:06 |
Message-ID: | 44856306.7020803@secdat.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
dananrg(at)yahoo(dot)com wrote:
>Seems like the open source data modeling tools aren't feature-rich
>quite yet.
>
>
Disclaimer: this is probably *not* what you want, but I will throw it
out for completeness.
We have a non-graphical tool that builds databases out of text files
that resemble CSS, such as:
table customers {
column customer { primary_key: Y; }
...
}
Very likely we share the same purpose as you do, to capture data
structure outside of DDL. But going further, we designed with nothing
less in mind than to capture the entire system requirements in the
database spec, including derived columns and other automations, and
including security as well. A generator builds the DDL.
Going one better, the generator also works as a diff engine, so when you
make changes it generates the DDL to change the structure and also the
trigger code to enforce the rules.
The twist is that we found when the file format was complete and the
features were in we really didn't need the GUI. We may put one in
someday, but jedit is our GUI now :)
So if you are at all willing to consider non-GUI tools that aim for the
same purpose, you may wish to check it out:
Attachment | Content-Type | Size |
---|---|---|
ken.vcf | text/x-vcard | 186 bytes |
From | Date | Subject | |
---|---|---|---|
Next Message | Roman Neuhauser | 2006-06-06 11:35:57 | Re: How to use index in case insensitive substing search |
Previous Message | dananrg | 2006-06-06 11:07:06 | Re: Best open source tool for database design / ERDs? |