When grilled further on (Wed, 7 Jan 2004 18:06:08 -0500),
Andrew Sullivan <[EMAIL PROTECTED]> confessed:
>
> We have lately had a couple of cases where machines either locked up,
> slowed down to the point of complete unusability, or died completely
> while using jfs. We are _not_ sure that jfs
On Fri, 9 Jan 2004, Richard Huxton wrote:
> On Friday 09 January 2004 08:57, Dennis Björklund wrote:
> > On Fri, 9 Jan 2004, Richard Huxton wrote:
> > > > > select invheadref, invprodref, sum(units)
> > > > > from invtran
> > > > > group by invheadref, invprodref
> > > >
> > > > For the above quer
Richard Huxton <[EMAIL PROTECTED]> writes:
>> The goal was to avoid the sorting which should not be needed with that
>> index (I hope). So I still think that it would help in this case.
> Sorry - not being clear. I can see how it _might_ help, but will the planner
> take into account the fact tha
Dennis Björklund wrote:
On Fri, 9 Jan 2004, Richard Huxton wrote:
select invheadref, invprodref, sum(units)
from invtran
group by invheadref, invprodref
For the above query, shouldn't you have one index for both columns
(invheadref, invprodref). Then it should not need to sort at all
On Friday 09 January 2004 08:57, Dennis Björklund wrote:
> On Fri, 9 Jan 2004, Richard Huxton wrote:
> > > > select invheadref, invprodref, sum(units)
> > > > from invtran
> > > > group by invheadref, invprodref
> > >
> > > For the above query, shouldn't you have one index for both columns
> > > (i
On Fri, 9 Jan 2004, Richard Huxton wrote:
> > > select invheadref, invprodref, sum(units)
> > > from invtran
> > > group by invheadref, invprodref
>
> > For the above query, shouldn't you have one index for both columns
> > (invheadref, invprodref). Then it should not need to sort at all to do th
On Friday 09 January 2004 07:29, Dennis Björklund wrote:
> On Thu, 8 Jan 2004, Bradley Tate wrote:
> >
> > select invheadref, invprodref, sum(units)
> > from invtran
> > group by invheadref, invprodref
> For the above query, shouldn't you have one index for both columns
> (invheadref, invprodref).
On Thu, 8 Jan 2004, Bradley Tate wrote:
> We've set up a little test box (1GHz Athlon, 40G IDE drive, 256M RAM,
> Redhat 9) to do some basic comparisons between postgresql and firebird
> 1.0.3 and 1.5rc8. Mostly the results are comparable, with one
> significant exception.
>
> QUERY
> select i