Re: Resources

From: Frank Bax <fbax(at)sympatico(dot)ca>
To: <nickf(at)ontko(dot)com>
Cc: "Guru\(External\)" <guru(at)indvalley(dot)com>, <pgsql-sql(at)postgresql(dot)org>
Subject: Re: Resources
Date: 2002-01-11 16:27:58
Message-ID: 3.0.6.32.20020111112758.01d7feb0@pop6.sympatico.ca
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Sorry, I made too general a statement. Index will help when the expession
is anchored to beginning of field. So 'A%' gets help from index, but '%A%'
does not.

Frank

At 11:13 AM 1/11/02 -0500, Nick Fankhauser wrote:
>
>> I don't beleive indexes will improve SELECT using LIKE.
>
>I wondered about that too, so I did a test using a database I'm working
>with. The results indicate that it helps substantially- here is my terminal
>log file:
>
>staging=#
>staging=#
>staging=# explain select count(*) from actor where actor_full_name like
>'A%';
>NOTICE: QUERY PLAN:
>
>Aggregate (cost=1067.72..1067.72 rows=1 width=0)
> -> Seq Scan on actor (cost=0.00..1066.29 rows=572 width=0)
>
>EXPLAIN
>staging=# create index test on actor(actor_full_name);
>CREATE
>staging=# explain select count(*) from actor where actor_full_name like
>'A%';
>NOTICE: QUERY PLAN:
>
>Aggregate (cost=577.46..577.46 rows=1 width=0)
> -> Index Scan using test on actor (cost=0.00..576.03 rows=572 width=0)
>
>EXPLAIN
>staging=#
>
>
>-Nick
>
>--------------------------------------------------------------------------
>Nick Fankhauser nickf(at)ontko(dot)com Phone 1.765.935.4283 Fax 1.765.962.9788
>Ray Ontko & Co. Software Consulting Services http://www.ontko.com/
>
>

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Nick Fankhauser 2002-01-11 16:56:08 Re: Resources
Previous Message jtp 2002-01-11 16:23:45 Re: Resources