Re: [GENERAL] Slow joins

From: Dustin Sallings <dustin(at)spy(dot)net>
To: Roberto Moreda <moreda(at)sanluis(dot)net>
Cc: gpsql-general <pgsql-general(at)hub(dot)org>
Subject: Re: [GENERAL] Slow joins
Date: 1999-08-05 16:43:22
Message-ID: Pine.SGI.3.95.990805094014.24447B-100000@bleu.west.spy.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Thu, 5 Aug 1999, Roberto Moreda wrote:

Have you vacuumed? Can you post your actual explain?

BTW, I would strongly encourage you to use boolean for this. I've
seen tables that used CHAR for such things and code that had to check for
one of the following values:

yYtT1 or nNfF0

Boolean can't have this problem.

# I have a speed problem with a query that involves 3 tables.
# I focused the problem in a scan in a big table (70000 rows) using a indexed
# field. The field is a "flag" field which values only can be 'Y' or 'N'.
# In the query I look for the values 'N' (average value = 10 rows over the
# 70000). Postgres does a Seq Scan.
#
# How can I speed up that scan? How can I force the use of the index?
#
# Where can I found general recomendations to speed up queries?
#
# TIA
#
# Roberto
#
# --
# Roberto Moreda
# Resp. Dpto. Informtica Handem/San Luis
# Tlf +34 981 779000
# Fax +34 981 779022
# Pol. Piadela Sur, Autova A6 Sal.567
# 15300 Betanzos (A Corua) - Espaa
#
#

--
SA, beyond.com My girlfriend asked me which one I like better.
pub 1024/3CAE01D5 1994/11/03 Dustin Sallings <dustin(at)spy(dot)net>
| Key fingerprint = 87 02 57 08 02 D0 DA D6 C8 0F 3E 65 51 98 D8 BE
L_______________________ I hope the answer won't upset her. ____________

In response to

  • Slow joins at 1999-08-05 14:58:58 from Roberto Moreda

Browse pgsql-general by date

  From Date Subject
Next Message Brett W. McCoy 1999-08-05 17:19:10 Re: [GENERAL] "group, by", problem, when, combined, with, "insert, into"
Previous Message Roberto Moreda 1999-08-05 16:32:14 eqsel ?