Re: Partitioning

From: James Sewell <james(dot)sewell(at)lisasoft(dot)com>
To: John R Pierce <pierce(at)hogranch(dot)com>
Cc: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Partitioning
Date: 2015-01-19 03:13:37
Message-ID: CANkGpBs8GypQ3TQGKdjTD+n-w1rkq5uO97h3tuhg5eWaKR6RbA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Sadly not ... I still hit all the tables.

Cheers,

James Sewell,
PostgreSQL Team Lead / Solutions Architect
______________________________________

Level 2, 50 Queen St, Melbourne VIC 3000

*P *(+61) 3 8370 8000 *W* www.lisasoft.com *F *(+61) 3 8370 8099

On Mon, Jan 19, 2015 at 1:54 PM, John R Pierce <pierce(at)hogranch(dot)com> wrote:

> On 1/18/2015 5:58 PM, James Sewell wrote:
>
> WITH idlist as (SELECT id from othertable)
> SELECT id from mastertable WHERE id = idlist.id);
>
>
>
> select mt.id, ... from mastertable mt join othertable ot on mt.id=
> ot.id;
>
> might optimize better.
>
>
>
> --
> john r pierce 37N 122W
> somewhere on the middle of the left coast
>
>

--

------------------------------
The contents of this email are confidential and may be subject to legal or
professional privilege and copyright. No representation is made that this
email is free of viruses or other defects. If you have received this
communication in error, you may not copy or distribute any part of it or
otherwise disclose its contents to anyone. Please advise the sender of your
incorrect receipt of this correspondence.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Kyotaro HORIGUCHI 2015-01-19 06:09:52 Re: Partitioning
Previous Message John R Pierce 2015-01-19 02:54:39 Re: Partitioning