slow subselects

Поиск
Список
Период
Сортировка
От Marko Niinimaki
Тема slow subselects
Дата
Msg-id 58b7e6510702192310v77517652q4ba8ecaf50ea161c@mail.gmail.com
обсуждение исходный текст
Ответы Re: slow subselects
Re: slow subselects
Список pgsql-performance
Hello,

I'm having a surprising performance problem with the following simple
'highscore report'

select studentid, (select max(score) from
studentprofile prof where prof.studentid = students.studentid) from students;

I have indexes on students(studentid) and studentprofile(studentid).

Row counts: about 160 000 in each students and studentprofile.
Postgres version:
postgresql-8.1.8-1.fc5
postgresql-server-8.1.8-1.fc5

This is a dual-processor 3Ghz 64bit box with 2 GB mem.

Running the query takes 99% CPU and 1% mem.

I have the same data in MSSQL and there the query takes less than a
minute. With postgres it seems to take several hours.

Is there a way of making this faster?

Marko

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Query Optimization
Следующее
От: ismo.tuononen@solenovo.fi
Дата:
Сообщение: Re: slow subselects