Re: Auto-tuning a VIEW?

Поиск
Список
Период
Сортировка
От Zoltan Boszormenyi
Тема Re: Auto-tuning a VIEW?
Дата
Msg-id 43A09F1F.6030105@dunaweb.hu
обсуждение исходный текст
Ответ на Re: Auto-tuning a VIEW?  (PFC <lists@peufeu.com>)
Ответы Re: Auto-tuning a VIEW?
Список pgsql-performance
PFC írta:

>
>> create view v1 (code,num) as
>> select 'AAA',id from table1
>> union
>> select 'BBB',id from table2;
>
>
>     As your rows are, by definition, distinct between each subquery,
> you  should use UNION ALL instead of UNION to save postgres the
> trouble of  hunting non-existing duplicates. This will save you a few
> sorts.


Thanks, now the SELECT from the huge VIEW runs under one third of the
original runtime.

>> select * from v1 where code||num = 'AAA2005000001';
>
>
>     Why don't you use code='AAA' and num='2005000001' ?


That's the point, the software environment we use cannot use it.
The whole stuff is built on PowerBuilder 8.0.x, using PFC.
The communication between the sheet and the response forms
allows only one key field, and changing the foundation is risky.
One particular application that uses the before mentioned VIEW with
the huge UNION also cannot workaround the problem, that's why I asked it.

The system is using Informix 9.21 and it's dog slow. I worked with
PostgreSQL earlier, and my tests show that PostgreSQL 8.x is
at least 5 times faster on normal queries than this other DBMS.
So I am trying to port the database contents to PostgreSQL first
and test some often used processing, to see whether it's feasible to
switch later.
Interestingly, the example query I provided runs about two times faster
in Informix than in PostgreSQL. I experimented a little and found what I
described.

Best regards,
Zoltán Böszörményi


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

Предыдущее
От: PFC
Дата:
Сообщение: Re: Auto-tuning a VIEW?
Следующее
От: Kevin Brown
Дата:
Сообщение: Simple Join