Re: Data transfer very slow when connected via DSL

Поиск
Список
Период
Сортировка
От Rainer Bauer
Тема Re: Data transfer very slow when connected via DSL
Дата
Msg-id 9q3n73hcv5ekhl97spfj9bp6erq80j0241@4ax.com
обсуждение исходный текст
Ответ на Data transfer very slow when connected via DSL  (Rainer Bauer <usenet@munnin.com>)
Ответы Re: Data transfer very slow when connected via DSL  (Dimitri <dimitrik.fr@gmail.com>)
Список pgsql-performance
Hello Dimitri,

>Let's stay optimist - at least now you know the main source of your problem! :))
>
>Let's see now with CURSOR...
>
>Firstly try this:
>munnin=>\timing
>munnin=>\set FETCH_COUNT 1;
>munnin=>select * from "tblItem";
>
>what's the time you see here? (I think your application is working in
>this manner)

That's it! It takes exactly 8 seconds like my program.

I retrieve the data through a bound column:
SELECT * FROM tblItem WHERE intItemIDCnt = ?

After converting this to
SELECT * FROM tblItem WHERE intItemIDCnt IN (...)
the query is as fast as psql: 409ms

So the problem is identified and the solution is to recode my application.

Rainer

PS: When enabling UseDeclareFetch as suggested by Tom then the runtime is
still three times slower: 1192ms. But I guess that problem is for the ODBC
list.

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

Предыдущее
От: Rainer Bauer
Дата:
Сообщение: Re: Data transfer very slow when connected via DSL
Следующее
От: Dimitri
Дата:
Сообщение: Re: Data transfer very slow when connected via DSL