Re: How to determine cause of performance problem?

From: Ulrich Wisser <ulrich(dot)wisser(at)relevanttraffic(dot)se>
To: Joost Kraaijeveld <J(dot)Kraaijeveld(at)Askesis(dot)nl>
Cc: Pgsql-Performance <pgsql-performance(at)postgresql(dot)org>
Subject: Re: How to determine cause of performance problem?
Date: 2005-09-23 09:31:25
Message-ID: 4333CB6D.1010208@relevanttraffic.se
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Hi Joost,

why do you convert programmatically? I would do something like

create sequence s_objectid;

insert into
prototype.orders(objectid,ordernumber,orderdate,customernumber)
select next_val('s_objectid'),ordernummer, orderdatum, klantnummer from
odbc.orders

Sounds a lot faster to me.

/Ulrich

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Simon Riggs 2005-09-23 09:37:12 Releasing memory during External sorting?
Previous Message K C Lau 2005-09-23 08:53:55 Re: SELECT LIMIT 1 VIEW Performance Issue