Re: Query never returns ...

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: Query never returns ...
Дата
Msg-id Pine.BSF.4.21.0102080855120.54197-100000@megazone23.bigpanda.com
обсуждение исходный текст
Ответ на Query never returns ...  (Brice Ruth <brice@webprojkt.com>)
Список pgsql-sql
After you load the data, you need to run vacuum analzye.  That'll
get statistics on the current data in the table.  Of course, I'm
not sure that'll help in this case.

On Thu, 8 Feb 2001, Brice Ruth wrote:

> Stephan,
>
> Here is what EXPLAIN shows:
>
> NOTICE:  QUERY PLAN:
>
> Sort  (cost=0.02..0.02 rows=1 width=64)
>   ->  Nested Loop  (cost=0.00..0.01 rows=1 width=64)
>         ->  Seq Scan on tblmedcond  (cost=0.00..0.00 rows=1 width=36)
>         ->  Seq Scan on tblsidedruglink  (cost=0.00..0.00 rows=1 width=28)
>
> As for vacuum analyze - prior to running into these problems, I deleted
> all data from the database (using delete from <tblname>) and then ran
> vacuumdb -a, after which I loaded the data into the tables using 'copy
> ... from' - there have been no updates to the database since then -
> merely selects.


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

Предыдущее
От: Brice Ruth
Дата:
Сообщение: Re: Query never returns ...
Следующее
От: "Albert REINER"
Дата:
Сообщение: Re: Re: SQL Join - MySQL/PostgreSQL difference?