Re: DELETE with LIMIT (or my first hack)

Поиск
Список
Период
Сортировка
От Marti Raudsepp
Тема Re: DELETE with LIMIT (or my first hack)
Дата
Msg-id AANLkTimvuT=A1+A_=K6uX-Kt_7kpJEjS25WmLJz3ODeu@mail.gmail.com
обсуждение исходный текст
Ответ на Re: DELETE with LIMIT (or my first hack)  (Jaime Casanova <jaime@2ndquadrant.com>)
Ответы Re: DELETE with LIMIT (or my first hack)  (Rob Wultsch <wultsch@gmail.com>)
Список pgsql-hackers
On Tue, Nov 30, 2010 at 05:09, Jaime Casanova <jaime@2ndquadrant.com> wrote:
> at least IMHO the only sensible way that LIMIT is usefull is with
> an ORDER BY clause with make the results very well defined...

DELETE with LIMIT is also useful for deleting things in batches, so
you can do large deletes on a live system without starving other users
from I/O. In this case deletion order doesn't matter (it's more
efficient to delete rows in physical table order) -- ORDER BY isn't
necessary.

Regards,
Marti


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

Предыдущее
От: Robert Haas
Дата:
Сообщение: Re: DELETE with LIMIT (or my first hack)
Следующее
От: Andres Freund
Дата:
Сообщение: Re: profiling connection overhead