Sequencial scan over primary keys 2

From: "Vilson farias" <vilson(dot)farias(at)digitro(dot)com(dot)br>
To: <pgsql-general(at)postgresql(dot)org>
Cc: "SIMONE Carla MOSENA" <simone(dot)mosena(at)digitro(dot)com(dot)br>
Subject: Sequencial scan over primary keys 2
Date: 2000-11-10 12:43:13
Message-ID: 00fc01c04b13$ca737540$98a0a8c0@dti.digitro.com.br
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Just another question : Does foreign has a automatic created index, like
primary keys?

----- Original Message -----
From: Vilson farias <vilson(dot)farias(at)digitro(dot)com(dot)br>
To: <pgsql-general(at)postgresql(dot)org>
Cc: SIMONE Carla MOSENA <simone(dot)mosena(at)digitro(dot)com(dot)br>
Sent: Sexta-feira, 10 de Novembro de 2000 10:16
Subject: [GENERAL] Sequencial scan over primary keys

:
: Hello,
:
: I need help in case below. My table tipo_categoria has a primary key,
: called cod_categoria When I use this key as parameter for my sql script,
the
: result of execution is a sequencial scan, but this is a PRIMARY KEY, it
does
: has an index. How can it be explained?
:
:
:
: sitest=# CREATE TABLE tipo_categoria (
: sitest(# cod_categoria smallint NOT NULL,
: sitest(# descricao varchar(40),
: sitest(# CONSTRAINT XPKtipo_categoria PRIMARY KEY (cod_categoria)
: sitest(#
: sitest(# );
: NOTICE: CREATE TABLE/PRIMARY KEY will create implicit index
: 'xpktipo_categoria' for table 'tipo_categoria'
: CREATE
: sitest=# copy tipo_categoria from '/home/postgres/categ.txt';
: COPY
: sitest=# explain select * from tipo_categoria where cod_categoria = 1;
: NOTICE: QUERY PLAN:
:
: Seq Scan on tipo_categoria (cost=0.00..22.50 rows=10 width=14)
:
: EXPLAIN
: sitest=# \di
: List of relations
: Name | Type | Owner
: --------------------+-------+----------
: ...
: xpktipo_categoria | index | postgres
: ...
: (26 rows)
: sitest=# select * from tipo_categoria;
: cod_categoria | descricao
: ---------------+---------------------------------------
: 0 | Categoria chamador desconhecida
: 1 | Reserva
: 2 | Reserva
: ..
: 224 | Assinante com tarifacao especial
: 226 | Telefone publico interurbano
: (20 rows)
:
:
: Thanks.
:
: José Vilson de Mello de Farias
: Digitro Tecnologia Ltda - Brasil
:

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Oliver Elphick 2000-11-10 14:01:09 Re: strange behvaviour in join? BUG in 7.02?
Previous Message Igor Roboul 2000-11-10 12:43:06 Re: Sequencial scan over primary keys