Re: Simple but slow - Mailing list pgsql-novice

From Henshall, Stuart - WCP
Subject Re: Simple but slow
Date
Msg-id E2870D8CE1CCD311BAF50008C71EDE8E01F74981@MAIL_EXCHANGE
Whole thread Raw
In response to Simple but slow  ("Chad Thompson" <chad@weblinkservices.com>)
List pgsql-novice

> -----Original Message-----
> From: Chad Thompson [mailto:chad@weblinkservices.com]
>
> select l.id, l.full_phone into "8_21_2002"
> from "temp_list_tier" l LEFT JOIN
> (select phonenum
> from call_results_fixed
> where client_id = 8) as cr
> ON l.full_phone = cr.phonenum
> where cr.phonenum Is Null
>
I'm guessing you want all those in "temp_list_tier" where there is not the same phone number in call_results_fixed.
Does this (untested) run better for you:

SELECT l.id,l.full_phone INTO "8_21_2002"
FROM "temp_list_tier" AS l WHERE
WHERE NOT EXISTS
(SELECT * FROM call_results_fixed AS cr
WHERE cr.client_id=8 AND l.full_phone=cr.phonenum);

Indexes needed (I think):
cr.client_id
cr.phonenum
Maybe (I don't think so):
l.full_phone

Not sure if this is what you wanted but hope its helpfull,
- Stuart

pgsql-novice by date:

Previous
From: Richard Ray
Date:
Subject: Permissions for system tables
Next
From: "Henshall, Stuart - WCP"
Date:
Subject: Re: Searching the Database