Thread: performance: delete+insert versus update

performance: delete+insert versus update

From
Lonni J Friedman
Date:
Greetings,
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?

Re: performance: delete+insert versus update

From
Tom Lane
Date:
Lonni J Friedman <netllama@gmail.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