Re: optimization ideas for frequent, large(ish) updates in frequently accessed DB?

Поиск
Список
Период
Сортировка
От Manfred Koizar
Тема Re: optimization ideas for frequent, large(ish) updates in frequently accessed DB?
Дата
Msg-id hovp20tm9ivkf4sc7dsgfqqjonfr3f22ub@email.aon.at
обсуждение исходный текст
Ответ на Re: optimization ideas for frequent, large(ish) updates in frequently accessed DB?  (Manfred Koizar <mkoi-pg@aon.at>)
Список pgsql-performance
On Fri, 13 Feb 2004 16:21:29 +0100, I wrote:
>Populate this table with
>    INSERT INTO idmap
>    SELECT id, id, true
>      FROM t;

This should be
    INSERT INTO idmap
    SELECT DISTINCT id, id, true
      FROM t;

Servus
 Manfred

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

Предыдущее
От: Manfred Koizar
Дата:
Сообщение: Re: optimization ideas for frequent, large(ish) updates in frequently accessed DB?
Следующее
От: Leon Out
Дата:
Сообщение: Re: Disappointing performance in db migrated from MS SQL Server