Re:

From: Greg Stark <gsstark(at)mit(dot)edu>
To: Matt(dot)Casters(at)advalvas(dot)be
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re:
Date: 2005-01-20 16:31:52
Message-ID: 871xcgdptz.fsf@stark.xeocode.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance


"Matt Casters" <Matt(dot)Casters(at)advalvas(dot)be> writes:

> I've been reading up on partitioned tabes on pgsql, will the performance
> benefit will be comparable to Oracle partitioned tables?

Postgres doesn't have any built-in support for partitioned tables. You can do
it the same way people did it on Oracle up until 8.0 which is by creating
views of UNIONs or using inherited tables.

The main advantage of partitioned tables is being able to load and drop data
in large chunks instantaneously. This avoids having to perform large deletes
and then having to vacuum huge tables to recover the space.

However in Postgres you aren't going to get most of the performance advantage
of partitions in your query plans. The Oracle planner can prune partitions it
knows aren't relevant to the query to avoid having to search through them.

This can let it get the speed of a full table scan without the disadvantage of
having to read irrelevant tuples. Postgres is sometimes going to be forced to
either do a much slower index scan or read tables that aren't relevant.

--
greg

In response to

  • at 2005-01-20 09:34:35 from Matt Casters

Responses

  • Re: at 2005-01-20 18:50:55 from Mischa

Browse pgsql-performance by date

  From Date Subject
Next Message Alex Turner 2005-01-20 16:39:16 Re: [SQL] OFFSET impact on Performance???
Previous Message Alex Turner 2005-01-20 16:31:29 Re: