diff options
author | Peter Eisentraut | 2017-11-23 14:39:47 +0000 |
---|---|---|
committer | Peter Eisentraut | 2017-11-23 14:44:28 +0000 |
commit | 3c49c6facb22cdea979f5d1465ba53f972d32163 (patch) | |
tree | a7da6a95fdb79a3fa313fb74afda16b746f8704e /doc/src/sgml/ref/vacuum.sgml | |
parent | 2f8d6369e60a244f28e0c93b8a02e73758322915 (diff) |
Convert documentation to DocBook XML
Since some preparation work had already been done, the only source
changes left were changing empty-element tags like <xref linkend="foo">
to <xref linkend="foo"/>, and changing the DOCTYPE.
The source files are still named *.sgml, but they are actually XML files
now. Renaming could be considered later.
In the build system, the intermediate step to convert from SGML to XML
is removed. Everything is build straight from the source files again.
The OpenSP (or the old SP) package is no longer needed.
The documentation toolchain instructions are updated and are much
simpler now.
Peter Eisentraut, Alexander Lakhin, Jürgen Purtz
Diffstat (limited to 'doc/src/sgml/ref/vacuum.sgml')
-rw-r--r-- | doc/src/sgml/ref/vacuum.sgml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml index 7ecd08977c5..b760e8ede18 100644 --- a/doc/src/sgml/ref/vacuum.sgml +++ b/doc/src/sgml/ref/vacuum.sgml @@ -61,7 +61,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet <command>VACUUM ANALYZE</command> performs a <command>VACUUM</command> and then an <command>ANALYZE</command> for each selected table. This is a handy combination form for routine maintenance scripts. See - <xref linkend="sql-analyze"> + <xref linkend="sql-analyze"/> for more details about its processing. </para> @@ -113,8 +113,8 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet Selects aggressive <quote>freezing</quote> of tuples. Specifying <literal>FREEZE</literal> is equivalent to performing <command>VACUUM</command> with the - <xref linkend="guc-vacuum-freeze-min-age"> and - <xref linkend="guc-vacuum-freeze-table-age"> parameters + <xref linkend="guc-vacuum-freeze-min-age"/> and + <xref linkend="guc-vacuum-freeze-table-age"/> parameters set to zero. Aggressive freezing is always performed when the table is rewritten, so this option is redundant when <literal>FULL</literal> is specified. @@ -215,7 +215,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet For tables with <acronym>GIN</acronym> indexes, <command>VACUUM</command> (in any form) also completes any pending index insertions, by moving pending index entries to the appropriate places in the main <acronym>GIN</acronym> index - structure. See <xref linkend="gin-fast-update"> for details. + structure. See <xref linkend="gin-fast-update"/> for details. </para> <para> @@ -243,14 +243,14 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet <command>VACUUM</command> causes a substantial increase in I/O traffic, which might cause poor performance for other active sessions. Therefore, it is sometimes advisable to use the cost-based vacuum delay feature. - See <xref linkend="runtime-config-resource-vacuum-cost"> for details. + See <xref linkend="runtime-config-resource-vacuum-cost"/> for details. </para> <para> <productname>PostgreSQL</productname> includes an <quote>autovacuum</quote> facility which can automate routine vacuum maintenance. For more information about automatic and manual vacuuming, see - <xref linkend="routine-vacuuming">. + <xref linkend="routine-vacuuming"/>. </para> </refsect1> @@ -278,9 +278,9 @@ VACUUM (VERBOSE, ANALYZE) onek; <title>See Also</title> <simplelist type="inline"> - <member><xref linkend="app-vacuumdb"></member> - <member><xref linkend="runtime-config-resource-vacuum-cost"></member> - <member><xref linkend="autovacuum"></member> + <member><xref linkend="app-vacuumdb"/></member> + <member><xref linkend="runtime-config-resource-vacuum-cost"/></member> + <member><xref linkend="autovacuum"/></member> </simplelist> </refsect1> </refentry> |