Re: Criteria to define indexes

From: David Johnston <polobo(at)yahoo(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: Criteria to define indexes
Date: 2013-07-27 00:31:05
Message-ID: 1374885065952-5765336.post@n5.nabble.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

JORGE MALDONADO wrote
> And so on. What I see is that it is not a good decision to set a key for
> every possibility because it will have an impact on performance due to
> index maintenance. What would be a good way to define indexes in a case
> like this?

For your specific case, and also more generally, you will define multiple
indexes with a single column within each. PostgreSQL is able to fairly
efficiently scan multiple indexes and then combine them to find records that
exist on both (or other logical combinations).

Multi-key indexes can be advantageous in, for instance, composite primary
key definitions but in this kind of star-schema setup simply have each
foreign key and whatever other searching fields you require maintain their
own individual index.

David J.

P.S.

Arguably, having a separate column for each kind of person is a poor design
at face value - though not uncommon. Whether it is going to bite you in the
future is unknown but depending on whether a single person can hold multiple
roles or if you need to add new roles in the future maintenance and querying
this table for summary information may become more difficult. At the same
time basic data entry and modelling to some degree is easier since this
model is simpler.

--
View this message in context: http://postgresql.1045698.n5.nabble.com/Criteria-to-define-indexes-tp5765334p5765336.html
Sent from the PostgreSQL - sql mailing list archive at Nabble.com.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Sergey Konoplev 2013-07-27 01:56:04 Re: Unique index and unique constraint
Previous Message JORGE MALDONADO 2013-07-26 23:10:36 Criteria to define indexes