joining two tables slow due to sequential scan

Поиск
Список
Период
Сортировка
От Tim Jones
Тема joining two tables slow due to sequential scan
Дата
Msg-id 47668A1334CDBF46927C1A0DFEB223D3131302@mail.optiosoftware.com
обсуждение исходный текст
Ответы Re: joining two tables slow due to sequential scan  ("Dave Dutcher" <dave@tridecap.com>)
Re: joining two tables slow due to sequential scan  (Scott Marlowe <smarlowe@g2switchworks.com>)
Список pgsql-performance
 
I am trying to join two tables and keep getting a sequential scan in the plan even though there is an index on the columns I am joining on.  Basically this the deal  ... I have two tables with docid in them which is what I am using for the join. 
 
ClinicalDocs ... (no primary key) though it does not help if I make docid primary key
docid integer (index)
patientid integer (index)
visitid integer (index)
 ...
 
Documentversions
docid integer (index)
docversionnumber (index)
docversionidentifier (primary key)
 
It seems to do an index scan if I put the primary key as docid.  This is what occurs when I link on the patid from ClinicalDocs to patient table.  However I can not make the docid primary key because it gets repeated depending on how may versions of a document I have.  I have tried using a foreign key on documentversions with no sucess.
 
In addition this query
 
select * from documentversions join clinicaldocuments on documentversions.documentidentifier
= clinicaldocuments.dssdocumentidentifier where documentversions.documentstatus = 'AC';
 
does index scan
but if I change the order e.g
 
select * from clinicaldocuments join documentversions on clinicaldocuments.dssdocumentidentifier
= documentversions .documentidentifier where clinicaldocuments.patientidentifier= 123;
 
does sequential scan what I need is bottom query
it is extremely slow ... Any ideas ?
 
Tim Jones
Healthcare Project Manager
Optio Software, Inc.
(770) 576-3555
 

В списке pgsql-performance по дате отправления:

Предыдущее
От: "Steinar H. Gunderson"
Дата:
Сообщение: Re: help required in design of database
Следующее
От: "Dave Dutcher"
Дата:
Сообщение: Re: joining two tables slow due to sequential scan