stat collector is not using - Mailing list pgsql-general

From AI Rumman
Subject stat collector is not using
Date
Msg-id 2a7905441002022247x66794dffja31f440a66438546@mail.gmail.com
Whole thread Raw
Responses Re: stat collector is not using  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
I am using Postgresql 8.1.
 
I set stats_start_collector = on
 
But I found statistics collector is not using;
 
show stats_start_collector;
 stats_start_collector
-----------------------
 on
(1 row)
 
select * from pg_stat_user_indexes where idx_scan > 0;
 relid | indexrelid | schemaname | relname | indexrelname | idx_scan | idx_tup_read | idx_tup_fetch
-------+------------+------------+---------+--------------+----------+--------------+---------------
(0 rows)
 
select * from pg_stat_user_tables where seq_scan > 0;
 relid | schemaname | relname | seq_scan | seq_tup_read | idx_scan | idx_tup_fetch | n_tup_ins | n_tup_upd | n_tup_del
-------+------------+---------+----------+--------------+----------+---------------+-----------+-----------+-----------
(0 rows)
 
select * from pg_stat_user_indexes where relname='crm';

  relid  | indexrelid | schemaname |     relname      |          indexrelname                     | idx_scan | idx_tup_read | idx_tup_fetch
---------+------------+------------+------------------+---------------------------------+----------+--------------+---------------
 2587873 |    2593637 | public     | crm              | crm_smownerid_deleted_idx        |        0 |            0 |             0
 2587873 |    2593636 | public     | crm              | crm_deleted_smownerid_idx        |        0 |            0 |             0
 2587873 |    2593635 | public     | crm              | crm_modifiedby_idx                       |        0 |            0 |             0
 2587873 |    2593634 | public     | crm              | crm_smownerid_idx                       |        0 |            0 |             0
 2587873 |    2593633 | public     | crm              | crm_smcreatorid_idx                     |        0 |            0 |             0
 2587873 |    2593631 | public     | crm        |      crm_pkey                                          |        0 |            0 |             0
 
 
Could  anyone please tell me why the statistics collector is not using?
 
I run vacuum analyze every night.

pgsql-general by date:

Previous
From: dipti shah
Date:
Subject: Re: Questions on PostGreSQL Authentication mechanism...
Next
From: "J. Greg Davidson"
Date:
Subject: surprised by non-strict array_append