Re: proper use of array datatype

From: Erik Jones <erik(at)myemma(dot)com>
To: Eric Andrews <eric(dot)m(dot)andrews(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: proper use of array datatype
Date: 2006-08-01 22:42:38
Message-ID: 44CFD8DE.8060005@myemma.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Eric Andrews wrote:
> hello all,
>
> I am not much of a schema designer and have a general questoin about
> the proper use of the array datatype. In my example, I have
> destinations, and destinations can have multiple boxes, and inside
> those boxes are a set of contents. what I want to do is search and
> basically "mine" data from the content sets. do I use an array
> datatype for the content column, or is there a better more efficient
> way to go about this?
>
> From http://www.postgresql.org/docs/8.1/interactive/arrays.html
>
> Tip: Arrays are not sets; searching for specific array elements may
> be a sign of database misdesign. Consider using a separate table with
> a row for each item that would be an array element. This will be
> easier to search, and is likely to scale up better to large numbers of
> elements.
Yeah, I've never considered arrays to be good data-types for columns.
One possible solution to what (I think) you're trying to do, is to have
a text or varchar column in which you store multiple values separated by
some delimiter (such as ::) that will not occur in the actual option
names. Then you can write rules to handle
inserting/updating/selecting/deleting options (which would boil down to
string operations). Or, you could just do the string manipulation
directly in your queries, whichever is easiest for you.

Here's a link to an article that discusses using inheritance for dynamic
content questionnaires (but, it may be overkill for what you need):

http://www.varlena.com/GeneralBits/110.php

--
erik jones <erik(at)myemma(dot)com>
software development
emma(r)

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Reece Hart 2006-08-01 23:33:04 Re: proper use of array datatype
Previous Message Roman Neuhauser 2006-08-01 22:37:35 Re: money type depreciated?