Re: Performace Optimization for Dummies

From: "Carlo Stonebanks" <stonec(dot)register(at)sympatico(dot)ca>
To: pgsql-performance(at)postgresql(dot)org
Subject: Re: Performace Optimization for Dummies
Date: 2006-10-03 03:03:31
Message-ID: efsju4$1fvi$1@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

> Did you think about putting the whole data into PostgreSQL using COPY in
> a nearly unprocessed manner, index it properly, and then use SQL and
> stored functions to transform the data inside the database to the
> desired result?

This is actually what we are doing. The slowness is on the row-by-row
transformation. Every row reqauires that all the inserts and updates of the
pvious row be committed - that's why we have problems figuring out how to
use this using SQL set logic.

Carlo

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Tim Truman 2006-10-03 03:59:37 Re: Forcing the use of particular execution plans
Previous Message Carlo Stonebanks 2006-10-03 03:01:50 Re: Performace Optimization for Dummies