Re: [OT] "advanced" database design (long)

From: Bill Moran <wmoran(at)potentialtech(dot)com>
To: vladimir konrad <vk(at)dsl(dot)pipex(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: [OT] "advanced" database design (long)
Date: 2008-02-02 14:55:40
Message-ID: 20080202095540.20da365c.wmoran@potentialtech.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

vladimir konrad <vk(at)dsl(dot)pipex(dot)com> wrote:
>
> Hello,
>
> I think that I understand basic relational theory but then I had an
> idea. What I would like to know if this is sometimes done or that I am
> possibly mad... Also, I do not know the terminology for this kind of
> thing so I do not know where and what to look for.
>
> Basically, instead of adding field to a table every time there is a
> need for it, have a table split in two: one holds identity (id) and one
> holds the attributes (linked to this id). For example, modelling
> subject (person):
>
> subject:
> id
> entered_on (date when entered to the database)
>
> sadg (subject attribute group):
> id
> value (string - name for group of attributes, e.g. postal
> address)
>
> sad (subject attribute definition):
> id
> sadg (references sadg(id))
> name (the name of the attribute - e.g. e-mail address, gender)
> app_type (string - what data type to use in application for
> sa.value)
> db_type (string - what cast to use in database for sa.value)
>
> sa (subject attribute):
> id
> subject (references subject(id))
> sad (references sad(id)
> value (string, holds the attribute value)
>
> sads (subject attribute definition set) - what values the sa can have:
> id
> sad (references sad(id))
> value (string)
>
> Basically, if in the future user decides that the subject should have
> a new attribute, he can simply add "attribute definition" and
> attribute_definition_set (if any) and the application would handle it
> without re-designing table, queries, and screens (i.e. the user
> interface when displaying sadg: "postal address" would always pull all
> attributes in that group and lay-out would automatically handle the new
> attributes).

Sounds like LDAP.

--
Bill Moran
http://www.potentialtech.com

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Robert Treat 2008-02-02 15:44:57 Re: Performance problems with Postgresql/ZFS/Non-global zones on Solaris?
Previous Message Lewis Cunningham 2008-02-02 14:15:03 Re: [OT] "advanced" database design (long)