table full scan or index full scan?

Поиск
Список
Период
Сортировка
От 旭斌 裴
Тема table full scan or index full scan?
Дата
Msg-id 274837.92053.qm@web15001.mail.cnb.yahoo.com
обсуждение исходный текст
Ответы Re: table full scan or index full scan?
Re: table full scan or index full scan?
Список pgsql-general
I have a 30,000,000 records table, counts the record number to need for 40 seconds.
The table has a primary key on column id;

perf=# explain select count(*) from test;
...
-----------------------------------------
Aggregate (cost=603702.80..603702.81 rows=1 width=0)
  -> Seq scan on test (cost=0.00..527681.04 rows=30408704 width=0)
...
perf=# select count(*) from test;
count
------------
30408704

perf=#


The postgresql database uses the table full scan.but in oracle, the similar SQL uses the index full scanning,speed quickly many than postgresql.  

postgresql's optimizer whether to have the necessity to make the adjustment?
 
postgresql version:8.3.7
OS : ubuntu 9
kernel:2.6.28-15-generic x86_64






好玩贺卡等你发,邮箱贺卡全新上线!

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

Предыдущее
От: Christophe Pettus
Дата:
Сообщение: Re: Building PG 8.4.1 with ossp-uuid on Centos 5.3
Следующее
От: "CISSE 2009"
Дата:
Сообщение: CISSE 2009 - Paper Submission Deadline Extended to October 26, 2009.