Re: Data Warehouse Reevaluation - MySQL vs Postgres --

Поиск
Список
Период
Сортировка
От Christopher Kings-Lynne
Тема Re: Data Warehouse Reevaluation - MySQL vs Postgres --
Дата
Msg-id 41491690.6030901@familyhealth.com.au
обсуждение исходный текст
Ответ на Re: Data Warehouse Reevaluation - MySQL vs Postgres --  (Mischa Sandberg <ischamay.andbergsay@activestateway.com>)
Список pgsql-performance
>> insert into X
>>   select a.keyA,
>>          a.keyB,
>>      a.colA,
>>      a.colB
>>   from Y a left join X b
>>        using (keyA, keyB)
>>   where b.keyA is NULL and
>>         b.keyB is NULL;
>>
>> With the appropriate indexes, this is pretty fast but I think a merge
>> would be much faster.

Problem is it's subject to race conditions if another process is
inserting stuff at the same time...

Chris

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

Предыдущее
От: Mischa Sandberg
Дата:
Сообщение: Re: Data Warehouse Reevaluation - MySQL vs Postgres -- merge tables
Следующее
От: "Iain"
Дата:
Сообщение: Re: Data Warehouse Reevaluation - MySQL vs Postgres --