|
|
|
|
@ -639,7 +639,7 @@ exclude database <replaceable class="parameter">PATTERN</replaceable> |
|
|
|
|
<term><option>--statistics</option></term> |
|
|
|
|
<listitem> |
|
|
|
|
<para> |
|
|
|
|
Dump statistics. |
|
|
|
|
Dump optimizer statistics. |
|
|
|
|
</para> |
|
|
|
|
</listitem> |
|
|
|
|
</varlistentry> |
|
|
|
|
@ -649,7 +649,7 @@ exclude database <replaceable class="parameter">PATTERN</replaceable> |
|
|
|
|
<listitem> |
|
|
|
|
<para> |
|
|
|
|
Dump only the statistics, not the schema (data definitions) or data. |
|
|
|
|
Statistics for tables, materialized views, foreign tables, |
|
|
|
|
Optimizer statistics for tables, materialized views, foreign tables, |
|
|
|
|
and indexes are dumped. |
|
|
|
|
</para> |
|
|
|
|
</listitem> |
|
|
|
|
@ -890,11 +890,12 @@ exclude database <replaceable class="parameter">PATTERN</replaceable> |
|
|
|
|
</para> |
|
|
|
|
|
|
|
|
|
<para> |
|
|
|
|
If <option>--statistics</option> is specified, |
|
|
|
|
When <option>--statistics</option> is specified, |
|
|
|
|
<command>pg_dumpall</command> will include most optimizer statistics in the |
|
|
|
|
resulting dump file. However, some statistics may not be included, such as |
|
|
|
|
those created explicitly with <xref linkend="sql-createstatistics"/> or |
|
|
|
|
custom statistics added by an extension. Therefore, it may be useful to |
|
|
|
|
resulting dump file. This does not include all statistics, such as |
|
|
|
|
those created explicitly with <xref linkend="sql-createstatistics"/>, |
|
|
|
|
custom statistics added by an extension, or statistics collected by the |
|
|
|
|
cumulative statistics system. Therefore, it may still be useful to |
|
|
|
|
run <command>ANALYZE</command> on each database after restoring from a dump |
|
|
|
|
file to ensure optimal performance. You can also run <command>vacuumdb -a |
|
|
|
|
-z</command> to analyze all databases. |
|
|
|
|
|