Re: Improve ODBC Throughput ? - Mailing list pgsql-odbc

From Arnaud Lesauvage
Subject Re: Improve ODBC Throughput ?
Date
Msg-id 45388E52.6040800@freesurf.fr
Whole thread Raw
In response to Re: Improve ODBC Throughput ?  (Ludek Finstrle <luf@pzkagis.cz>)
Responses Re: Improve ODBC Throughput ?  (Ludek Finstrle <luf@pzkagis.cz>)
Re: Improve ODBC Throughput ?  (Hiroshi Inoue <inoue@tpf.co.jp>)
List pgsql-odbc
Ludek Finstrle a écrit :
>> >2.Declare Fetch
>> >In Access, you do not have this fine control. Some psqlODBC user have
>> >experimented with the DECLARE/FETCH option in the psqlODBC settngs.I am not
>> >entirely sure how Declare/Fetch works though, I have never used it.
>>
>> My tables are linked with these options :
>> UseDeclareFetch=1
>> UseServerSidePrepare=1
>> Fetch=10000
>
> UseDeclareFetch and UseServerSidePrepare are disjoint options.
> If I remember it the right way the UseServerSidePrepare disallow
> UseDeclareFetch. Please try UseServerSidePrepare=0 when you want
> using DeclareFetch.
>
> Why you set Fetch so high? How many rows do you expect?
> The UseDeclareFetch declare the select statement as cursor (using
> declare statement) and then get the rows using fetch statement
> (see postgresql manual).
> I see no usage for UseDeclareFetch with so high Fetch.
>
> The UseServerSidePrepare use prepare and execute statement (also
> see postgresql manual).

I thought that since memory consumption was not an issue, I
could fetch a lot of rows at once. I read the ODBC
documentation about that but not PostgreSQL's, but I'll
correct this ASAP.

What is your advice in fact ?

UseDeclareFetch=0
UseServerSidePrepare=1

Or maybe

UseDeclareFetch=1
UseServerSidePrepare=0
Fetch=100


I might just try both in fact (don't have the time right
now, maybe later today though).

pgsql-odbc by date:

Previous
From: Arnaud Lesauvage
Date:
Subject: Re: Improve ODBC Throughput ?
Next
From: Hiroshi Inoue
Date:
Subject: Re: Improve ODBC Throughput ?