curious delay on view/where

Поиск
Список
Период
Сортировка
От Gary Stainburn
Тема curious delay on view/where
Дата
Msg-id 200410281116.44972.gary.stainburn@ringways.co.uk
обсуждение исходный текст
Ответы Re: extra info - curious delay on view/where  (Gary Stainburn <gary.stainburn@ringways.co.uk>)
Re: curious delay on view/where  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-sql
Hi folks.

I have the following view:

CREATE VIEW "stock_available" as  SELECT * FROM stock_details  WHERE available = true AND visible = true AND location
notin (SELECT descr FROM ignored);
 

Stock_details is itself a view pulling in a number of tables. Everything 
works fine until I try to pull in only the details for a specific 
branch, using the following.

select * from stock_available where branch = 'Leeds';
or
select * from stock_available where branch = 'Doncaster';

At this point, the query takes 11 seconds. Any other quiery, including

select * from stock_available where branch != 'Doncaster'
and
select * from stock_available where branch != 'Leeds'

which only return the equivelent of the top two (we only have Leeds and 
Doncaster) are les than  1 second.

Anyone got any ideas of the cause, or thoughts on how I can trace the 
problem?

-- 
Gary Stainburn
This email does not contain private or confidential material as it
may be snooped on by interested government parties for unknown
and undisclosed purposes - Regulation of Investigatory Powers Act, 2000     



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

Предыдущее
От: Markus Schaber
Дата:
Сообщение: Select Instead on a table
Следующее
От: Gary Stainburn
Дата:
Сообщение: Re: extra info - curious delay on view/where