Sophie

Sophie

distrib > Mageia > 7 > i586 > by-pkgid > 9b6cc37ce608401d44f6535a0c7cb777 > files > 1066

postgresql11-docs-11.5-1.mga7.noarch.rpm

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>52.87. pg_stats</title><link rel="stylesheet" type="text/css" href="stylesheet.css" /><link rev="made" href="pgsql-docs@lists.postgresql.org" /><meta name="generator" content="DocBook XSL Stylesheets Vsnapshot" /><link rel="prev" href="view-pg-shadow.html" title="52.86. pg_shadow" /><link rel="next" href="view-pg-tables.html" title="52.88. pg_tables" /></head><body><div xmlns="http://www.w3.org/TR/xhtml1/transitional" class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="5" align="center">52.87. <code xmlns="http://www.w3.org/1999/xhtml" class="structname">pg_stats</code></th></tr><tr><td width="10%" align="left"><a accesskey="p" href="view-pg-shadow.html" title="52.86. pg_shadow">Prev</a> </td><td width="10%" align="left"><a accesskey="u" href="catalogs.html" title="Chapter 52. System Catalogs">Up</a></td><th width="60%" align="center">Chapter 52. System Catalogs</th><td width="10%" align="right"><a accesskey="h" href="index.html" title="PostgreSQL 11.5 Documentation">Home</a></td><td width="10%" align="right"> <a accesskey="n" href="view-pg-tables.html" title="52.88. pg_tables">Next</a></td></tr></table><hr></hr></div><div class="sect1" id="VIEW-PG-STATS"><div class="titlepage"><div><div><h2 class="title" style="clear: both">52.87. <code class="structname">pg_stats</code></h2></div></div></div><a id="id-1.10.4.89.2" class="indexterm"></a><p>
   The view <code class="structname">pg_stats</code> provides access to
   the information stored in the <a class="link" href="catalog-pg-statistic.html" title="52.50. pg_statistic"><code class="structname">pg_statistic</code></a>
   catalog.  This view allows access only to rows of
   <code class="structname">pg_statistic</code> that correspond to tables the
   user has permission to read, and therefore it is safe to allow public
   read access to this view.
  </p><p>
   <code class="structname">pg_stats</code> is also designed to present the
   information in a more readable format than the underlying catalog
   — at the cost that its schema must be extended whenever new slot types
   are defined for <code class="structname">pg_statistic</code>.
  </p><div class="table" id="id-1.10.4.89.5"><p class="title"><strong>Table 52.88. <code class="structname">pg_stats</code> Columns</strong></p><div class="table-contents"><table class="table" summary="pg_stats Columns" border="1"><colgroup><col /><col /><col /><col /></colgroup><thead><tr><th>Name</th><th>Type</th><th>References</th><th>Description</th></tr></thead><tbody><tr><td><code class="structfield">schemaname</code></td><td><code class="type">name</code></td><td><code class="literal"><a class="link" href="catalog-pg-namespace.html" title="52.32. pg_namespace"><code class="structname">pg_namespace</code></a>.nspname</code></td><td>Name of schema containing table</td></tr><tr><td><code class="structfield">tablename</code></td><td><code class="type">name</code></td><td><code class="literal"><a class="link" href="catalog-pg-class.html" title="52.11. pg_class"><code class="structname">pg_class</code></a>.relname</code></td><td>Name of table</td></tr><tr><td><code class="structfield">attname</code></td><td><code class="type">name</code></td><td><code class="literal"><a class="link" href="catalog-pg-attribute.html" title="52.7. pg_attribute"><code class="structname">pg_attribute</code></a>.attname</code></td><td>Name of the column described by this row</td></tr><tr><td><code class="structfield">inherited</code></td><td><code class="type">bool</code></td><td> </td><td>If true, this row includes inheritance child columns, not just the
       values in the specified table</td></tr><tr><td><code class="structfield">null_frac</code></td><td><code class="type">real</code></td><td> </td><td>Fraction of column entries that are null</td></tr><tr><td><code class="structfield">avg_width</code></td><td><code class="type">integer</code></td><td> </td><td>Average width in bytes of column's entries</td></tr><tr><td><code class="structfield">n_distinct</code></td><td><code class="type">real</code></td><td> </td><td>
       If greater than zero, the estimated number of distinct values in the
       column.  If less than zero, the negative of the number of distinct
       values divided by the number of rows.  (The negated form is used when
       <code class="command">ANALYZE</code> believes that the number of distinct values is
       likely to increase as the table grows; the positive form is used when
       the column seems to have a fixed number of possible values.)  For
       example, -1 indicates a unique column in which the number of distinct
       values is the same as the number of rows.
      </td></tr><tr><td><code class="structfield">most_common_vals</code></td><td><code class="type">anyarray</code></td><td> </td><td>
       A list of the most common values in the column. (Null if
       no values seem to be more common than any others.)
      </td></tr><tr><td><code class="structfield">most_common_freqs</code></td><td><code class="type">real[]</code></td><td> </td><td>
       A list of the frequencies of the most common values,
       i.e., number of occurrences of each divided by total number of rows.
       (Null when <code class="structfield">most_common_vals</code> is.)
      </td></tr><tr><td><code class="structfield">histogram_bounds</code></td><td><code class="type">anyarray</code></td><td> </td><td>
       A list of values that divide the column's values into groups of
       approximately equal population.  The values in
       <code class="structfield">most_common_vals</code>, if present, are omitted from this
       histogram calculation.  (This column is null if the column data type
       does not have a <code class="literal">&lt;</code> operator or if the
       <code class="structfield">most_common_vals</code> list accounts for the entire
       population.)
      </td></tr><tr><td><code class="structfield">correlation</code></td><td><code class="type">real</code></td><td> </td><td>
       Statistical correlation between physical row ordering and
       logical ordering of the column values.  This ranges from -1 to +1.
       When the value is near -1 or +1, an index scan on the column will
       be estimated to be cheaper than when it is near zero, due to reduction
       of random access to the disk.  (This column is null if the column data
       type does not have a <code class="literal">&lt;</code> operator.)
      </td></tr><tr><td><code class="structfield">most_common_elems</code></td><td><code class="type">anyarray</code></td><td> </td><td>
       A list of non-null element values most often appearing within values of
       the column. (Null for scalar types.)
      </td></tr><tr><td><code class="structfield">most_common_elem_freqs</code></td><td><code class="type">real[]</code></td><td> </td><td>
       A list of the frequencies of the most common element values, i.e., the
       fraction of rows containing at least one instance of the given value.
       Two or three additional values follow the per-element frequencies;
       these are the minimum and maximum of the preceding per-element
       frequencies, and optionally the frequency of null elements.
       (Null when <code class="structfield">most_common_elems</code> is.)
      </td></tr><tr><td><code class="structfield">elem_count_histogram</code></td><td><code class="type">real[]</code></td><td> </td><td>
       A histogram of the counts of distinct non-null element values within the
       values of the column, followed by the average number of distinct
       non-null elements.  (Null for scalar types.)
      </td></tr></tbody></table></div></div><br class="table-break" /><p>
   The maximum number of entries in the array fields can be controlled on a
   column-by-column basis using the <code class="command">ALTER TABLE SET STATISTICS</code>
   command, or globally by setting the
   <a class="xref" href="runtime-config-query.html#GUC-DEFAULT-STATISTICS-TARGET">default_statistics_target</a> run-time parameter.
  </p></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="view-pg-shadow.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="catalogs.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="view-pg-tables.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">52.86. <code class="structname">pg_shadow</code> </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 52.88. <code class="structname">pg_tables</code></td></tr></table></div></body></html>