FW: slow query on postgres 8.4

Поиск
Список
Период
Сортировка
От Russell Keane
Тема FW: slow query on postgres 8.4
Дата
Msg-id 8D0E5D045E36124A8F1DDDB463D548557D0CDC6A1D@mxsvr1.is.inps.co.uk
обсуждение исходный текст
Список pgsql-performance
>       explain analyze
>       select a.ID, a.provider, a.hostname, a.username, a.eventTimeStamp, a.AIPGUID, a.submissionGUID,
a.parentSubmissionGUID,a.sizeArchived, a.addedContentString, a.addedContentSizesString, a.removedContentString,
a.removedContentSizesString,a.modifiedContentString, a.modifiedContentSizesString, a.DISCRIMINATOR 
>         from AIPModificationEvent a
>         where a.ID in (select MAX(b.ID) from AIPModificationEvent b where b.parentSubmissionGUID
>         in
>            (select c.GUID from WorkflowProcessingEvent c where c.DISCRIMINATOR='WorkflowCompleted'
>                and c.eventTimeStamp >= '2012-11-10 00:00:00' and c.eventTimeStamp < '2012-11-11 00:00:00')
>                or b.submissionGUID in
>                    (select c.GUID from WorkflowProcessingEvent c
>                    where c.DISCRIMINATOR='WorkflowCompleted' and c.eventTimeStamp >= '2012-11-10 00:00:00' and
c.eventTimeStamp< 
>       '2012-11-11 00:00:00')
>                    group by b.AIPGUID)
>       limit 1000 offset 3000


Hi Maria,

It appears to be doing a sort so that it can carry out the group by clause but the group by doesn't appear to be
necessaryas you're selecting the max(b.ID) after doing the group by. 
If you omit the group by then it will return more rows in that part of the query but the MAX(b.ID) will return 1 value
regardless.

Regards,

Russell Keane.

Registered name: In Practice Systems Ltd.
Registered address: The Bread Factory, 1a Broughton Street, London, SW8 3QJ
Registered Number: 1788577
Registered in England
Visit our Internet Web site at www.inps.co.uk
The information in this internet email is confidential and is intended solely for the addressee. Access, copying or
re-useof information in it by anyone else is not authorised. Any views or opinions presented are solely those of the
authorand do not necessarily represent those of INPS or any of its affiliates. If you are not the intended recipient
pleasecontact  is.helpdesk@inps.co.uk 



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

Предыдущее
От: Pavel Stehule
Дата:
Сообщение: Re: Query that uses lots of memory in PostgreSQL 9.2.1 in Windows 7
Следующее
От: "Kevin Grittner"
Дата:
Сообщение: Re: help on slow query using postgres 8.4