analyze.sgml 6.31 KB
Newer Older
1
<!--
2
$PostgreSQL: pgsql/doc/src/sgml/ref/analyze.sgml,v 1.18 2003/12/14 00:15:03 neilc Exp $
3
PostgreSQL documentation
4 5 6 7
-->

<refentry id="SQL-ANALYZE">
 <refmeta>
8
  <refentrytitle id="sql-analyze-title">ANALYZE</refentrytitle>
9 10
  <refmiscinfo>SQL - Language Statements</refmiscinfo>
 </refmeta>
11

12
 <refnamediv>
13 14
  <refname>ANALYZE</refname>
  <refpurpose>collect statistics about a database</refpurpose>
15
 </refnamediv>
16

Peter Eisentraut's avatar
Peter Eisentraut committed
17 18 19 20
 <indexterm zone="sql-analyze">
  <primary>ANALYZE</primary>
 </indexterm>

21
 <refsynopsisdiv>
22
<synopsis>
23
ANALYZE [ VERBOSE ] [ <replaceable class="PARAMETER">table</replaceable> [ (<replaceable class="PARAMETER">column</replaceable> [, ...] ) ] ]
24
</synopsis>
25 26
 </refsynopsisdiv>

27 28 29
 <refsect1>
  <title>Description</title>

30
  <para>
31 32 33 34
   <command>ANALYZE</command> collects statistics about the contents
   of tables in the database, and stores the results in the system
   table <literal>pg_statistic</literal>.  Subsequently, the query
   planner uses these statistics to help determine the most efficient
35 36 37 38 39 40 41
   execution plans for queries.
  </para>

  <para>
   With no parameter, <command>ANALYZE</command> examines every table in the
   current database.  With a parameter, <command>ANALYZE</command> examines
   only that table.  It is further possible to give a list of column names,
42
   in which case only the statistics for those columns are collected.
43
  </para>
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
 </refsect1>

 <refsect1>
  <title>Parameters</title>

  <variablelist>
   <varlistentry>
    <term><literal>VERBOSE</literal></term>
    <listitem>
     <para>
      Enables display of progress messages.
     </para>
    </listitem>
   </varlistentry>

   <varlistentry>
    <term><replaceable class="PARAMETER">table</replaceable></term>
    <listitem>
     <para>
      The name (possibly schema-qualified) of a specific table to
      analyze. Defaults to all tables in the current database.
     </para>
    </listitem>
   </varlistentry>

   <varlistentry>
    <term><replaceable class="PARAMETER">column</replaceable></term>
    <listitem>
     <para>
      The name of a specific column to analyze. Defaults to all columns.
     </para>
    </listitem>
   </varlistentry>
  </variablelist>
 </refsect1>
79

80 81 82 83 84 85 86 87 88 89
 <refsect1>
  <title>Outputs</title>

   <para>
    When <literal>VERBOSE</> is specified, <command>ANALYZE</> emits
    progress messages to indicate which table is currently being
    processed.  Various statistics about the tables are printed as well.
   </para>
 </refsect1>

90 91
 <refsect1>
  <title>Notes</title>
92 93 94 95 96 97

  <para>
   It is a good idea to run <command>ANALYZE</command> periodically, or
   just after making major changes in the contents of a table.  Accurate
   statistics will help the planner to choose the most appropriate query
   plan, and thereby improve the speed of query processing.  A common
98 99
   strategy is to run <xref linkend="sql-vacuum" endterm="sql-vacuum-title">
   and <command>ANALYZE</command> once a day during a low-usage time of day.
100 101 102
  </para>

  <para>
103 104 105
   Unlike <command>VACUUM FULL</command>, <command>ANALYZE</command>
   requires only a read lock on the target table, so it can run in
   parallel with other activity on the table.
106 107 108
  </para>

  <para>
109 110 111 112 113 114 115 116 117
   The statistics collected by <command>ANALYZE</command> usually
   include a list of some of the most common values in each column and
   a histogram showing the approximate data distribution in each
   column.  One or both of these may be omitted if
   <command>ANALYZE</command> deems them uninteresting (for example,
   in a unique-key column, there are no common values) or if the
   column data type does not support the appropriate operators.  There
   is more information about the statistics in <xref
   linkend="maintenance">.
118 119 120
  </para>

  <para>
121 122 123 124 125 126 127 128 129 130 131 132
   For large tables, <command>ANALYZE</command> takes a random sample
   of the table contents, rather than examining every row.  This
   allows even very large tables to be analyzed in a small amount of
   time.  Note, however, that the statistics are only approximate, and
   will change slightly each time <command>ANALYZE</command> is run,
   even if the actual table contents did not change.  This may result
   in small changes in the planner's estimated costs shown by
   <command>EXPLAIN</command>. In rare situations, this
   non-determinism will cause the query optimizer to choose a
   different query plan between runs of <command>ANALYZE</command>. To
   avoid this, raise the amount of statistics collected by
   <command>ANALYZE</command>, as described below.
133 134 135
  </para>

  <para>
136
   The extent of analysis can be controlled by adjusting the
137
   <varname>default_statistics_target</varname> parameter variable, or
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
   on a column-by-column basis by setting the per-column statistics
   target with <command>ALTER TABLE ... ALTER COLUMN ... SET
   STATISTICS</command> (see <xref linkend="sql-altertable"
   endterm="sql-altertable-title">).  The target value sets the
   maximum number of entries in the most-common-value list and the
   maximum number of bins in the histogram.  The default target value
   is 10, but this can be adjusted up or down to trade off accuracy of
   planner estimates against the time taken for
   <command>ANALYZE</command> and the amount of space occupied in
   <literal>pg_statistic</literal>.  In particular, setting the
   statistics target to zero disables collection of statistics for
   that column.  It may be useful to do that for columns that are
   never used as part of the <literal>WHERE</>, <literal>GROUP BY</>,
   or <literal>ORDER BY</> clauses of queries, since the planner will
   have no use for statistics on such columns.
153 154 155 156 157 158 159 160 161 162
  </para>

  <para>
   The largest statistics target among the columns being analyzed determines
   the number of table rows sampled to prepare the statistics.  Increasing
   the target causes a proportional increase in the time and space needed
   to do <command>ANALYZE</command>.
  </para>
 </refsect1>

163 164 165 166 167 168
 <refsect1>
  <title>Compatibility</title>

  <para>
   There is no <command>ANALYZE</command> statement in the SQL standard.
  </para>
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
 </refsect1>
</refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:nil
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:"../reference.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:"/usr/lib/sgml/catalog"
sgml-local-ecat-files:nil
End:
-->