Re: Updates: all or partial records

From: John R Pierce <pierce(at)hogranch(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Updates: all or partial records
Date: 2010-01-25 07:25:30
Message-ID: 4B5D476A.2050300@hogranch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Paul M Foster wrote:
> Scenario: You have to update a record. One or more fields are unchanged
> from the original record being altered. So you have two options: 1)
> Include those fields in your UPDATE statement, even though they are
> unchanged; 2) Omit unchanged fields from the UPDATE statement.
>
> My first inclination is to omit unchanged fields. However, I have the
> idea that PG simply marks the existing record to be dropped, and
> generates a whole new row by copying unspecified fields from the
> original record.
>
> My question is, which is more efficient? Performance-wise, does it
> matter whether unchanged fields are included or omitted on UPDATE
> statements

my first order guess is, sending and having to parse the additional
unchanged fields in your UPDATE statement is more expensive than letting
the engine just copy them from the old tuple to the new.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Pavel Stehule 2010-01-25 07:39:10 Re: Variadic polymorpic functions
Previous Message Magnus Hagander 2010-01-25 07:23:45 Re: Postgresql HA on MSCS over VMWARE