Re: oracle to psql migration - slow query in postgres

From: bricklen <bricklen(at)gmail(dot)com>
To: Tony Capobianco <tcapobianco(at)prospectiv(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: oracle to psql migration - slow query in postgres
Date: 2010-10-14 20:23:12
Message-ID: AANLkTinWi4dwox6pf88CCF-oHXJ3oF565UKb7TbToy1M@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin pgsql-performance

On Thu, Oct 14, 2010 at 12:43 PM, Tony Capobianco
<tcapobianco(at)prospectiv(dot)com> wrote:
> We have 4 quad-core processors and 32GB of RAM.  The below query uses
> the members_sorted_idx_001 index in oracle, but in postgres, the
> optimizer chooses a sequential scan.
>
> explain analyze create table tmp_srcmem_emws1
> as
> select emailaddress, websiteid
>  from members
>  where emailok = 1
>   and emailbounced = 0;

Maybe a couple indexes to try:

create index members_emailok_emailbounced_idx on members (emailok,emailbounced);

or a functional index (will likely be smaller, depending on the
contents of your table):
create index members_emailok_emailbounced_idx on members
(emailok,emailbounced) where emailok = 1 and emailbounced = 0; -- if
you use that combination of 1 and 0 regularly

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Ivan Voras 2010-10-14 20:32:09 Re: oracle to psql migration - slow query in postgres
Previous Message Jon Nelson 2010-10-14 20:10:01 Re: oracle to psql migration - slow query in postgres

Browse pgsql-performance by date

  From Date Subject
Next Message Ivan Voras 2010-10-14 20:32:09 Re: oracle to psql migration - slow query in postgres
Previous Message Jon Nelson 2010-10-14 20:10:01 Re: oracle to psql migration - slow query in postgres