Re: INSERT OU UPDATE WITHOUT SELECT?

Поиск
Список
Период
Сортировка
От Jim C. Nasby
Тема Re: INSERT OU UPDATE WITHOUT SELECT?
Дата
Msg-id 20060531062908.GH53487@pervasive.com
обсуждение исходный текст
Ответ на Re: INSERT OU UPDATE WITHOUT SELECT?  ("D'Arcy J.M. Cain" <darcy@druid.net>)
Список pgsql-performance
On Tue, May 30, 2006 at 07:05:08PM -0400, D'Arcy J.M. Cain wrote:
> On Tue, 30 May 2006 17:54:00 -0500
> "Dave Dutcher" <dave@tridecap.com> wrote:
> > What I do when I'm feeling lazy is execute a delete statement and then
> > an insert.  I only do it when I'm inserting/updating a very small number
> > of rows, so I've never worried if its optimal for performance.  Besides
> > I've heard that an update in postgres is similar in performance to a
> > delete/insert.
>
> Well, they are basically the same operation in PostgreSQL.  An update
> adds a row to the end and marks the old one dead.  A delete/insert
> marks the row dead and adds one at the end.  There may be some
> optimization if the engine does both in one operation.

The new tuple will actually go on the same page during an update, if
possible. If not, the FSM is consulted. Appending to the end of the
table is a last resort.

Update is more effecient than delete/insert. First, it's one less
statement to parse and plan. Second, AFAIK insert always goes to the
FSM; it has no way to know you're replacing the row(s) you just deleted.
--
Jim C. Nasby, Sr. Engineering Consultant      jnasby@pervasive.com
Pervasive Software      http://pervasive.com    work: 512-231-6117
vcard: http://jim.nasby.net/pervasive.vcf       cell: 512-569-9461

В списке pgsql-performance по дате отправления:

Предыдущее
От: "Jim C. Nasby"
Дата:
Сообщение: Re: App very unresponsive while performing simple update
Следующее
От: Brendan Duddridge
Дата:
Сообщение: Re: App very unresponsive while performing simple update