Re: in memory views

From: Thomas Vatter <thomas(dot)vatter(at)network-inventory(dot)de>
To: Dave Dutcher <dave(at)tridecap(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: in memory views
Date: 2006-05-10 21:18:58
Message-ID: 446258C2.2070805@network-inventory.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Dave Dutcher wrote:

> Are you using the Postgres JDBC driver? Or are you using an ODBC JDBC
> driver? The Postgres specific driver is usually faster.

I'm using the postgres driver

regards
tom

>
>
>
> -----Original Message-----
> *From:* pgsql-performance-owner(at)postgresql(dot)org
> [mailto:pgsql-performance-owner(at)postgresql(dot)org] *On Behalf Of
> *Thomas Vatter
> *Sent:* Wednesday, May 10, 2006 3:54 PM
> *To:* Scott Marlowe
> *Cc:* Tino Wildenhain; pgsql-performance(at)postgresql(dot)org
> *Subject:* Re: [PERFORM] in memory views
>
> Scott Marlowe wrote:
>
>>On Wed, 2006-05-10 at 10:41, Thomas Vatter wrote:
>>
>>
>>>Scott Marlowe wrote:
>>>
>>>
>>
>>
>>
>>>>What happens if you do this by declaring it as a cursor and then
>>>>fetching the first row?
>>>>
>>>>
>>
>>
>>
>>>>
>>>>
>>>>
>>>I do executeQuery(), for the resultSet I do next() and return one row,
>>>but wait, I have to review the logic in this area, I can tell you
>>>tomorrow
>>>
>>>
>>
>>
>>A good short test is to run explain analyze on the query from the psql
>>command line. If it shows an execution time of significantly less than
>>what you get from you application, then it is likely that the real
>>problem is that your application is receiving the whole result set via
>>libpq and waiting for that. A cursor will solve that problem.
>>
>>---------------------------(end of broadcast)---------------------------
>>TIP 4: Have you searched our list archives?
>>
>> http://archives.postgresql.org
>>
>>
>>
>>
> Yes, the difference between psql command line and application is 6
> seconds to 40 seconds. It is
> exactly the step resultSet = excecuteQuery() that needs 40
> seconds. I use next() as a cursor
> through the resultSet, but I fear this is not enough, do I have to
> use createStatement(resultSetType,
> resultSetConcurrency) respectively prepareStatement
> (resultSetType, resultSetConcurrency) to
> achieve the cursor behaviour?
>
> regards
> tom
>

--
Mit freundlichen Grüßen / Regards
Vatter

Network Inventory Software
Sun Microsystems Principal Partner

www.network-inventory.de
Tel. 030-79782510
E-Mail thomas(dot)vatter(at)network-inventory(dot)de

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Thomas Vatter 2006-05-10 21:24:43 Re: in memory views
Previous Message Dave Dutcher 2006-05-10 21:08:49 Re: in memory views