Skip site navigation (1) Skip section navigation (2)

Peripheral Links

Header And Logo

PostgreSQL
| The world's most advanced open source database.

Site Navigation

Search archives
  Advanced Search

Re: performance: delete+insert versus update


  • From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
  • To: Lonni J Friedman <netllama(at)gmail(dot)com>
  • Cc: pgsql-novice(at)postgresql(dot)org
  • Subject: Re: performance: delete+insert versus update
  • Date: Tue, 31 Mar 2009 00:56:09 -0400
  • Message-id: <1058.1238475369@sss.pgh.pa.us> <text/plain>

Lonni J Friedman <netllama(at)gmail(dot)com> writes:
> I'm in the midst of a heated debate with a coworker over whether doing
> a delete + insert is more expensive than doing an update.  My belief
> is that an update will usually be less expensive.  Can anyone weigh
> in?

Well, in terms of changes hitting the disk, they're approximately
the same thing in Postgres (not so in many other DBs, though).  However,
the overhead of issuing two SQL commands instead of one means that the
update method should win.

If your coworker knows how to do a delete+insert with no more SQL
interpretation than an update, I'd like to see it ...

			regards, tom lane



Home | Main Index | Thread Index

Privacy Policy | About PostgreSQL
Copyright © 1996 – 2012 PostgreSQL Global Development Group