Re: Ingres statdump equivalent for postgresql

Поиск
Список
Период
Сортировка
От Greg Smith
Тема Re: Ingres statdump equivalent for postgresql
Дата
Msg-id 4C93E81F.7080905@2ndquadrant.com
обсуждение исходный текст
Ответ на Ingres statdump equivalent for postgresql  (badair@epc-instore.com)
Список pgsql-admin
badair@epc-instore.com wrote:
> I'm looking for a tool that will enable me to dump the data frequency histograms
> for a postgresql table.

#!/bin/bash
DB="$1"
TABLE="$2"
psql -d $DB -x -c "SELECT
tablename,attname,null_frac,avg_width,n_distinct,correlation,most_common_vals,most_common_freqs,histogram_bounds
FROM pg_stats where tablename='$TABLE'"

Run that, pass it database then table name, and you'll get the data for
each column in that table.  That should get you started; refer to
http://www.postgresql.org/docs/current/interactive/catalog-pg-statistic.html
and to
http://www.postgresql.org/docs/current/interactive/planner-stats-details.html
for more details.

--
Greg Smith, 2ndQuadrant US greg@2ndQuadrant.com Baltimore, MD
PostgreSQL Training, Services and Support  www.2ndQuadrant.us
Author, "PostgreSQL 9.0 High Performance"    Pre-ordering at:
https://www.packtpub.com/postgresql-9-0-high-performance/book


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Ingres statdump equivalent for postgresql
Следующее
От: Kasia Tuszynska
Дата:
Сообщение: question about HA in PG 9.0