Fix cross-references, update examples, copy-edit.

This commit is contained in:
Tom Lane 2000-04-08 02:39:02 +00:00
parent c264c4daeb
commit b99cdde0d7
2 changed files with 16 additions and 25 deletions

View File

@ -1,5 +1,5 @@
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/reset.sgml,v 1.7 1999/07/22 15:09:14 thomas Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/ref/reset.sgml,v 1.8 2000/04/08 02:39:02 tgl Exp $
Postgres documentation Postgres documentation
--> -->
@ -41,8 +41,7 @@ RESET <replaceable class="PARAMETER">variable</replaceable>
<para> <para>
Refer to Refer to
<xref linkend="sql-set-title" endterm="sql-set-title"> <xref linkend="sql-set-title" endterm="sql-set-title">
for more information on available for more information on available variables.
variables.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
@ -68,7 +67,7 @@ RESET VARIABLE
<para> <para>
Message returned if Message returned if
<replaceable class="PARAMETER">variable</replaceable> is successfully reset <replaceable class="PARAMETER">variable</replaceable> is successfully reset
to its default value.. to its default value.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
@ -85,7 +84,7 @@ RESET VARIABLE
Description Description
</title> </title>
<para> <para>
<command>RESET</command> restores variables to the <command>RESET</command> restores variables to their
default values. default values.
Refer to Refer to
<xref linkend="sql-set-title" endterm="sql-set-title"> <xref linkend="sql-set-title" endterm="sql-set-title">
@ -106,12 +105,7 @@ SET <replaceable class="parameter">variable</replaceable> = DEFAULT
</title> </title>
<para> <para>
<command>RESET</command> is a <productname>Postgres</productname> See also
language extension.
</para>
<para>
Use to
<xref linkend="sql-set-title" endterm="sql-set-title"> and <xref linkend="sql-set-title" endterm="sql-set-title"> and
<xref linkend="sql-show-title" endterm="sql-show-title"> <xref linkend="sql-show-title" endterm="sql-show-title">
to manipulate variable values. to manipulate variable values.

View File

@ -1,5 +1,5 @@
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/show.sgml,v 1.8 2000/02/15 20:49:07 tgl Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/ref/show.sgml,v 1.9 2000/04/08 02:39:02 tgl Exp $
Postgres documentation Postgres documentation
--> -->
@ -40,8 +40,9 @@ SHOW <replaceable class="PARAMETER">keyword</replaceable>
<term><replaceable class="PARAMETER">keyword</replaceable></term> <term><replaceable class="PARAMETER">keyword</replaceable></term>
<listitem> <listitem>
<para> <para>
Refer to <command>SET</command> for more information on available Refer to
arguments. <xref linkend="sql-set-title" endterm="sql-set-title">
for more information on available variables.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
@ -62,7 +63,6 @@ SHOW <replaceable class="PARAMETER">keyword</replaceable>
<varlistentry> <varlistentry>
<term><computeroutput> <term><computeroutput>
NOTICE: <replaceable class="PARAMETER">variable</replaceable> is <replaceable>value</replaceable> NOTICE: <replaceable class="PARAMETER">variable</replaceable> is <replaceable>value</replaceable>
SHOW VARIABLE
</computeroutput></term> </computeroutput></term>
<listitem> <listitem>
<para> <para>
@ -76,7 +76,7 @@ NOTICE: Unrecognized variable <replaceable>value</replaceable>
</computeroutput></term> </computeroutput></term>
<listitem> <listitem>
<para> <para>
Message returned if <returnvalue>value</returnvalue> does not exist. Message returned if <returnvalue>variable</returnvalue> does not exist.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
@ -84,7 +84,6 @@ NOTICE: Unrecognized variable <replaceable>value</replaceable>
<varlistentry> <varlistentry>
<term><computeroutput> <term><computeroutput>
NOTICE: Time zone is unknown NOTICE: Time zone is unknown
SHOW VARIABLE
</computeroutput></term> </computeroutput></term>
<listitem> <listitem>
<para> <para>
@ -125,12 +124,10 @@ SHOW VARIABLE
Notes Notes
</title> </title>
<para> <para>
<command>SHOW</command> is a <productname>Postgres</productname> See also
language extension. <xref linkend="sql-set-title" endterm="sql-set-title"> and
</para> <xref linkend="sql-reset-title" endterm="sql-reset-title">
<para> to manipulate variable values.
Refer to <command>SET</command>/<command>RESET</command>
to set/reset variable values.
</para> </para>
</refsect2> </refsect2>
</refsect1> </refsect1>
@ -144,7 +141,7 @@ SHOW VARIABLE
<programlisting> <programlisting>
SHOW DateStyle; SHOW DateStyle;
NOTICE:DateStyle is Postgres with US (NonEuropean) conventions NOTICE: DateStyle is ISO with US (NonEuropean) conventions
</programlisting> </programlisting>
</para> </para>
@ -152,7 +149,7 @@ NOTICE:DateStyle is Postgres with US (NonEuropean) conventions
Show the current genetic optimizer (<literal>geqo</literal>) setting: Show the current genetic optimizer (<literal>geqo</literal>) setting:
<programlisting> <programlisting>
SHOW GEQO; SHOW GEQO;
NOTICE:GEQO is ON NOTICE: GEQO is ON beginning with 11 relations
</programlisting> </programlisting>
</para> </para>
</refsect1> </refsect1>