Re: Postgres DB Slowness

Поиск
Список
Период
Сортировка
От Juan José Santamaría Flecha
Тема Re: Postgres DB Slowness
Дата
Msg-id CAC+AXB2=EA-iCdURZDxALoJUHsRi+dn0a=J6L26m=wPCSqnY5A@mail.gmail.com
обсуждение исходный текст
Ответ на RE: Postgres DB Slowness  (<soumik.bhattacharjee@kpn.com>)
Ответы RE: Postgres DB Slowness  (<soumik.bhattacharjee@kpn.com>)
Список pgsql-admin
On Fri, Aug 23, 2019 at 10:17 AM <soumik.bhattacharjee@kpn.com> wrote:
>
> Query
> ===========
> SELECT
>     i.*
> FROM
>     npcurren.num_cps_instelling i,
>     npcurren.num_aangesloten_nr n
> WHERE
>     n.fk_exploit_nop_int_oper_id = 'PTT'
>     AND i.telefoonnummer != n.anr_nummer_hoog
>     AND i.telefoonnummer != n.anr_nummer_laag;
>
> Explain Plan
> ======================
> "Nested Loop  (cost=2068.47..1769226624.33 rows=101090505159 width=73)"
>

This query looks wrong, resulting in a cartesian join.

As other people have pointed out, the execution times do not seem
reasonable, could you change the 'SELECT *' into a 'SELECT count(1)'
for the comparison?

Regards,

Juan José Santamaría Flecha



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

Предыдущее
От:
Дата:
Сообщение: RE: Postgres DB Slowness
Следующее
От: legrand legrand
Дата:
Сообщение: Re: Postgres DB Slowness