Re: need help in designing a database.

From: Richard Huxton <dev(at)archonet(dot)com>
To: Haim Ashkenazi <haim(at)babysnakes(dot)org>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: need help in designing a database.
Date: 2005-11-28 10:32:53
Message-ID: 438ADCD5.7040703@archonet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Haim Ashkenazi wrote:
> Hi
>
> I'm writing an application that calculates working hours for billing.
> there are three levels of billing. one for regular hours, one for
> evening/nights, and one for saturdays/holidays.
>
> My first decision is wether I make these calculations in a database view
> (If I understand correctly, it would be calculated only once - when
> creating the entry or modify it - or am I wrong?)

Wrong. A view is just a way of transforming one query into another - it
re-runs the query every time.

> or just put the
> regular working hours in the database, and calculate it in the application
> (and this way it would be calculated every time I view the page)?
>
> If I'm right and it's better to put it in the database, I really need help
> designing the database... (of-course it's an open-source project).
>
> my idea is to create one table that define default hours/days ranges for
> the three levels of billing, one table to define client specific ranges, a
> table with charging information (charge per hour for every level of
> billing for every customer), tables that define custommers, and job
> details and a final view that summerize everything.
>
> my main problem is how do I define an hour range from friday 15:00 to
> sunday 08:00, and how to create a function that compares the working hours
> with this range?

Hmm - sounds to me like you either:
1. Need to allow some time to go and learn the basics of relational
theory, and then some SQL and PostgreSQL admin.
2. Find another team-member for your project who has these skills.
3. Find another project that has solved the same problems. Join that
project or re-use elements (licence allowing).

Now, #3 seems to be the best approach to me. Any timesheet/billing
application will have to deal with the sort of problem you're
describing, and it makes sense to learn what approaches others have tried.

--
Richard Huxton
Archonet Ltd

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Haim Ashkenazi 2005-11-28 11:17:21 Re: need help in designing a database.
Previous Message Mark Cave-Ayland 2005-11-28 10:30:52 PostgreSQL and SAN/NAS technologies