Re: What is the fastest way to get a resultset

From: "Magnus Naeslund(f)" <mag(at)fbab(dot)net>
To: "Bupp Phillips" <hello(at)noname(dot)com>
Cc: <pgsql-performance(at)postgresql(dot)org>
Subject: Re: What is the fastest way to get a resultset
Date: 2003-08-25 20:37:24
Message-ID: 007f01c36b48$b0f06df0$f80c0a0a@mnd
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Bupp Phillips <hello(at)noname(dot)com> wrote:
> I'm very new to Postgresql, so don't beat me up to bad if you see a
> problem, just inform me what I've done wrong.
>
> I'm use Postgresql 7.2 (PeerDirect's Windows port) on Win2000 384MB
> RAM 10GB of Free space 800 Mhz, using the ODBC driver 7.03.01.00.
>
> I have a table that has 103,000 records in it (record size is about
> 953 bytes) and when I do a select all (select * from <table>) it
> takes a whopping 30 secs for the data to return!!
>
> SQLServer on the other hand takes 6 secs, but you can also use what is
> called a firehose cursor, which will return the data in < 1 sec.
>
> I have done everything that I know how to speed this up, does anyone
> have any advise?
>

Probably you need to fetch more than one row at a time.
I made that misstake once myself :)

Magnus

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Jeff 2003-08-25 20:46:34 Re: What is the fastest way to get a resultset
Previous Message Bupp Phillips 2003-08-25 19:56:59 What is the fastest way to get a resultset