Re: Ingres statdump equivalent for postgresql - Mailing list pgsql-admin

From Greg Smith
Subject Re: Ingres statdump equivalent for postgresql
Date
Msg-id 4C93E81F.7080905@2ndquadrant.com
Whole thread Raw
In response to Ingres statdump equivalent for postgresql  (badair@epc-instore.com)
List 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 by date:

Previous
From: Tom Lane
Date:
Subject: Re: Ingres statdump equivalent for postgresql
Next
From: Kasia Tuszynska
Date:
Subject: question about HA in PG 9.0