Re: Arrays Design Question

From: "Josh Berkus" <josh(at)agliodbs(dot)com>
To: Achilleus Mantzios <rnd(at)gatewaynet(dot)com>, pgsql-sql(at)postgresql(dot)org
Subject: Re: Arrays Design Question
Date: 2002-03-26 16:44:24
Message-ID: web-839200@davinci.ethosmedia.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Achilleus ,

> performance for the following problem:
> I want to store the factors of a linear formula of unknown degree
> (but less
> than 10) in a table for online stats/graphs on historical data (about
> 200 Mb).
> I am thinking of
> a) Store each formula as a float8[] array and then write a pgsql
> function in C
> to compute the result given the value of variable x.
> b) Add 10 columns of type float8 and store 0 values where the
> position of the
> column exceeds the degree of the formula.

BOTH of the above are poor approaches that will lead to headaches for
you later on. Instead:

c. Store each formula in a column in another table with a parent-child
relationship to your main table, i.e.

online_stats stat_formulas
--------------- ------------------
online_stat_id ------------->online_stat_id
formula_number
formula

This is basic relational database design. You should probably pick up
a copy of "Relational Database Design for Mere Mortals" before you
get yourself into a real mess ...

-Josh Berkus

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Josh Berkus 2002-03-26 16:45:53 Re: Cleaning up template 1
Previous Message Tom Lane 2002-03-26 15:33:06 Re: C Function with Arrays Question