Re: Object-Relational table design question

From: Tm <x(at)Vex(dot)Net>
To: Josh Berkus <josh(at)agliodbs(dot)com>, Michael A Nachbaur <mike(at)nachbaur(dot)com>, pgsql-sql(at)postgresql(dot)org
Subject: Re: Object-Relational table design question
Date: 2003-06-18 13:20:44
Message-ID: 200306180920.44304.x@Vex.Net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On June 17, 2003 12:23 pm, Josh Berkus wrote:
> Personally, I'm not a fan of inherited tables; I think they muddy up
> the relationality of SQL without providing any additional

We actually are doing what the original poster is in the process of
doing; we have an ISP billing system based on postgresql. I have to
agree with the above. We actually did use inheritence for a few things
(though not for account definitions), and I've always found it somewhat
of a pain. Especially when pg_dump was broken and corrupted the
database on restore... I believe this is fixed now, but I can't see the
benefit of the complication, whereas it does make the relationships
more murky as described above.

> JOIN webhosting ON service.id = webhosting.service

This would work though it's not very scaleable. Our current system makes
all elements of a service into what we call an 'attribute'. The
attributes are defined in a table, and attached to each account type,
and turned on or off, and twiddled with various definitions such as
term/period billing, etc. This makes it relatively easy to add new
services... just add another entry in the account attributes table,
whereas with hard coded joins above, if you add more services you're
going to have to edit all of your code where joins take place.

So the billing job, for example, if you want a list of services that a
customer's account has:

SELECT * FROM account_attribute
WHERE account_type=customer.account_type
AND bill_mode>0;

(We go even further and do resource based accounting in yet another
relation which references the attributes... it's a bit complicated, but
I think its proving quite flexible so far, and cleaner than using
inheritance).

--
Tim Middleton | Cain Gang Ltd | But the trouble was that my hysterical
fit
x(at)veX(dot)net | www.Vex.Net | could not go on for ever. --Dost (NFTU)

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message scott.marlowe 2003-06-18 13:21:23 Re: Text insert max. size.
Previous Message Eric Anderson Vianet SAO 2003-06-18 12:39:08 Re: yet pg_toast reindex