Re: slow update

Поиск
Список
Период
Сортировка
От Scott Marlowe
Тема Re: slow update
Дата
Msg-id dcc563d10805201047k7fe49f2cl5975a440811371d5@mail.gmail.com
обсуждение исходный текст
Ответ на slow update  (kevin kempter <kevin@kevinkempterllc.com>)
Список pgsql-performance
On Mon, May 19, 2008 at 11:56 PM, kevin kempter
<kevin@kevinkempterllc.com> wrote:
> Hi all;
>
> I have a query that does this:
>
> update tab_x set (inactive_dt, last_update_dt) =
> ((select run_dt from current_run_date), (select run_dt from
> current_run_date))
> where
> cust_id::text || loc_id::text in
> (select cust_id::text || loc_id::text from summary_tab);

I think what you're looking for in the where clause is something like:

where (cust_id, loc_id) in (select cust_id, loc_id from summary_tab);

which should let it compare the native types all at once.  Not sure if
this works on versions before 8.2 or not.

If you MUST use that syntax, then create indexes on them, i.e.:

create index tab_x_multidx on tab_x ((cust_id::text||loc_id::text));
create index summary_tab_x_multidx on summary_tab
((cust_id::text||loc_id::text));

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

Предыдущее
От: Bill Moran
Дата:
Сообщение: Re: Author Wanted
Следующее
От: kevin kempter
Дата:
Сообщение: improving performance for a delete