simple query running for ever - Mailing list pgsql-performance

From Nagaraj Raj
Subject simple query running for ever
Date
Msg-id 574079062.1873527.1592339731136@mail.yahoo.com
Whole thread Raw
Responses Re: simple query running for ever  (Michael Lewis <mlewis@entrata.com>)
Re: simple query running for ever  (Justin Pryzby <pryzby@telsasoft.com>)
Re: simple query running for ever  (Justin Pryzby <pryzby@telsasoft.com>)
Re: simple query running for ever  (Laurenz Albe <laurenz.albe@cybertec.at>)
List pgsql-performance
I wrote a simple query, and it is taking too long, not sure what is wrong in it, even its not giving EXPLAIN ANALYZE.

select T0."physical_address_sid", T0."individual_entity_proxy_id", T2."infrrd_hh_rank_nbr"
from "cms_prospects".PROSPECT T0
--inner join "sas_prs_tmp".DEDUPE3583E3F18 T1 on T0."individual_entity_proxy_id" = T1."individual_entity_proxy_id"
left join "cms_prospects".INDIVIDUAL_DEMOGRAPHIC T2 on T0."individual_entity_proxy_id" =
T2."individual_entity_proxy_id"
 


"Merge Left Join  (cost=55.96..18147747.08 rows=213620928 width=20)"
"  Merge Cond: (t0.individual_entity_proxy_id = t2.individual_entity_proxy_id)"
"  ->  Index Scan using pk_prospect on prospect t0  (cost=0.57..10831606.89 rows=213620928 width=16)"
"  ->  Index Only Scan using indxp_individual_demo_infrrd_hh_rank_nbr on individual_demographic t2
(cost=0.57..5013756.93rows=260652064 width=12)"
 



Any suggestions or help would be highly appreciated. 




Best regards,
Rj






pgsql-performance by date:

Previous
From: regrog
Date:
Subject: Re: view reading information_schema is slow in PostgreSQL 12
Next
From: Michael Lewis
Date:
Subject: Re: simple query running for ever