]> granicus.if.org Git - postgresql/commitdiff
Remove a bunch of content-free Diagnostics sections, as per previous
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 9 Sep 2003 18:28:53 +0000 (18:28 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 9 Sep 2003 18:28:53 +0000 (18:28 +0000)
discussion.  (Still have some work to do editing the remainder.)

70 files changed:
doc/src/sgml/ref/abort.sgml
doc/src/sgml/ref/alter_aggregate.sgml
doc/src/sgml/ref/alter_conversion.sgml
doc/src/sgml/ref/alter_database.sgml
doc/src/sgml/ref/alter_domain.sgml
doc/src/sgml/ref/alter_function.sgml
doc/src/sgml/ref/alter_group.sgml
doc/src/sgml/ref/alter_language.sgml
doc/src/sgml/ref/alter_opclass.sgml
doc/src/sgml/ref/alter_schema.sgml
doc/src/sgml/ref/alter_sequence.sgml
doc/src/sgml/ref/alter_table.sgml
doc/src/sgml/ref/alter_trigger.sgml
doc/src/sgml/ref/alter_user.sgml
doc/src/sgml/ref/analyze.sgml
doc/src/sgml/ref/begin.sgml
doc/src/sgml/ref/close.sgml
doc/src/sgml/ref/cluster.sgml
doc/src/sgml/ref/clusterdb.sgml
doc/src/sgml/ref/comment.sgml
doc/src/sgml/ref/commit.sgml
doc/src/sgml/ref/copy.sgml
doc/src/sgml/ref/create_aggregate.sgml
doc/src/sgml/ref/create_cast.sgml
doc/src/sgml/ref/create_constraint.sgml
doc/src/sgml/ref/create_conversion.sgml
doc/src/sgml/ref/create_domain.sgml
doc/src/sgml/ref/create_function.sgml
doc/src/sgml/ref/create_group.sgml
doc/src/sgml/ref/create_index.sgml
doc/src/sgml/ref/create_language.sgml
doc/src/sgml/ref/create_opclass.sgml
doc/src/sgml/ref/create_operator.sgml
doc/src/sgml/ref/create_rule.sgml
doc/src/sgml/ref/create_schema.sgml
doc/src/sgml/ref/create_table.sgml
doc/src/sgml/ref/create_table_as.sgml
doc/src/sgml/ref/create_trigger.sgml
doc/src/sgml/ref/create_type.sgml
doc/src/sgml/ref/create_user.sgml
doc/src/sgml/ref/deallocate.sgml
doc/src/sgml/ref/drop_aggregate.sgml
doc/src/sgml/ref/drop_domain.sgml
doc/src/sgml/ref/drop_function.sgml
doc/src/sgml/ref/drop_group.sgml
doc/src/sgml/ref/drop_index.sgml
doc/src/sgml/ref/drop_language.sgml
doc/src/sgml/ref/drop_opclass.sgml
doc/src/sgml/ref/drop_operator.sgml
doc/src/sgml/ref/drop_rule.sgml
doc/src/sgml/ref/drop_schema.sgml
doc/src/sgml/ref/drop_sequence.sgml
doc/src/sgml/ref/drop_table.sgml
doc/src/sgml/ref/drop_trigger.sgml
doc/src/sgml/ref/drop_type.sgml
doc/src/sgml/ref/drop_view.sgml
doc/src/sgml/ref/explain.sgml
doc/src/sgml/ref/fetch.sgml
doc/src/sgml/ref/lock.sgml
doc/src/sgml/ref/notify.sgml
doc/src/sgml/ref/prepare.sgml
doc/src/sgml/ref/reindex.sgml
doc/src/sgml/ref/reset.sgml
doc/src/sgml/ref/rollback.sgml
doc/src/sgml/ref/select_into.sgml
doc/src/sgml/ref/set_transaction.sgml
doc/src/sgml/ref/show.sgml
doc/src/sgml/ref/start_transaction.sgml
doc/src/sgml/ref/truncate.sgml
doc/src/sgml/ref/unlisten.sgml

index e83b21e4d571e545b3cd1c0fc63114b46ba8d467..f0e436fccd4b37cf505bd542871418e72cdd37ca 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/abort.sgml,v 1.14 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/abort.sgml,v 1.15 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -31,7 +31,8 @@ ABORT [ WORK | TRANSACTION ]
    <command>ABORT</command> rolls back the current transaction and causes
    all the updates made by the transaction to be discarded. 
    This command is identical
-   in behavior to the standard <acronym>SQL</acronym> command <command>ROLLBACK</command>,
+   in behavior to the standard <acronym>SQL</acronym> command
+   <xref linkend="SQL-ROLLBACK" endterm="SQL-ROLLBACK-TITLE">,
    and is present only for historical reasons.
   </para>
  </refsect1>
@@ -52,36 +53,17 @@ ABORT [ WORK | TRANSACTION ]
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>ROLLBACK</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if successful.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>WARNING:  ROLLBACK: no transaction in progress</computeroutput></term>
-    <listitem>
-     <para>
-      If there is not any transaction currently in progress.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
   <para>
-   Use <command>COMMIT</command> to successfully
-   terminate a transaction.
+   Use <xref linkend="SQL-COMMIT" endterm="SQL-COMMIT-TITLE"> to
+   successfully terminate a transaction.
+  </para>
+
+  <para>
+   Issuing <command>ABORT</> when not inside a transaction does
+   no harm, but it will provoke a warning message.
   </para>
  </refsect1>
 
@@ -106,6 +88,15 @@ ABORT;
   </para>
  </refsect1>
 
+ <refsect1>
+  <title>See Also</title>
+
+  <simplelist type="inline">
+   <member><xref linkend="sql-begin" endterm="sql-begin-title"></member>
+   <member><xref linkend="sql-commit" endterm="sql-commit-title"></member>
+   <member><xref linkend="sql-rollback" endterm="sql-rollback-title"></member>
+  </simplelist>
+ </refsect1>
 </refentry>
 
 <!-- Keep this comment at the end of the file
index e4a6850e95de0f59511321784c0e0fcd7458e856..7b8c76af70b6536d068f459068413882ac6df956 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_aggregate.sgml,v 1.2 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_aggregate.sgml,v 1.3 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -29,8 +29,8 @@ ALTER AGGREGATE <replaceable>name</replaceable> ( <replaceable>type</replaceable
 
   <para>
    <command>ALTER AGGREGATE</command> changes the definition of an
-   aggregate function.  The only functionality is to rename the
-   aggregate function.
+   aggregate function.  The only currently available functionality is to
+   rename the aggregate function.
   </para>
  </refsect1>
   
@@ -67,21 +67,6 @@ ALTER AGGREGATE <replaceable>name</replaceable> ( <replaceable>type</replaceable
    </varlistentry>
   </variablelist>
  </refsect1>
-   
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>ALTER AGGREGATE</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the command was successful.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
 
  <refsect1>
   <title>Examples</title>
index d1ab87c3b5f06ccc1b2c728d834d4c2b0462f16d..5b07ef2b1db29326be2ee2da8c3253b755f5d4ff 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_conversion.sgml,v 1.2 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_conversion.sgml,v 1.3 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -29,7 +29,8 @@ ALTER CONVERSION <replaceable>name</replaceable> RENAME TO <replaceable>newname<
 
   <para>
    <command>ALTER CONVERSION</command> changes the definition of a
-   conversion.  The only functionality is to rename the conversion.
+   conversion.  The only currently available functionality is to rename the
+   conversion.
   </para>
  </refsect1>
   
@@ -56,21 +57,6 @@ ALTER CONVERSION <replaceable>name</replaceable> RENAME TO <replaceable>newname<
    </varlistentry>
   </variablelist>
  </refsect1>
-   
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>ALTER CONVERSION</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the command was successful.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
 
  <refsect1>
   <title>Examples</title>
index 6e8da1f0308944b6a6ffaf2bfb1dcbde9f1ab8f8..cdc5e7f13e3203fb258994d6daeca997325fa4c8 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_database.sgml,v 1.8 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_database.sgml,v 1.9 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -103,31 +103,6 @@ ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> RENAME TO <repl
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-   <variablelist>
-    <varlistentry>
-     <term><computeroutput>ALTER DATABASE</computeroutput></term>
-     <listitem>
-      <para>
-       Message returned if the alteration was successful.
-      </para>
-     </listitem>
-    </varlistentry>
-     
-    <varlistentry>
-     <term><computeroutput>ERROR:  database "dbname" does not exist</computeroutput></term>
-     <listitem>
-      <para>
-       Error message returned if the specified database is not known
-       to the system.
-      </para>
-     </listitem>
-    </varlistentry>
-   </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
index f31311b6331d5849789908e698fdadfeeaf6a40e..09e3db3ad8b367f3de98ea0d262c2391ed1d1e52 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_domain.sgml,v 1.8 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_domain.sgml,v 1.9 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -23,9 +23,6 @@ PostgreSQL documentation
  </indexterm>
 
  <refsynopsisdiv>
-  <refsynopsisdivinfo>
-   <date>2002-11-27</date>
-  </refsynopsisdivinfo>
   <synopsis>
 ALTER DOMAIN <replaceable class="PARAMETER">domain</replaceable>
     { SET DEFAULT <replaceable class="PARAMETER">value</replaceable> | DROP DEFAULT }
@@ -38,116 +35,11 @@ ALTER DOMAIN <replaceable class="PARAMETER">domain</replaceable>
 ALTER DOMAIN <replaceable class="PARAMETER">domain</replaceable>
     OWNER TO <replaceable class="PARAMETER">new_owner</replaceable> 
   </synopsis>
-
-  <refsect2 id="R2-SQL-ALTERDOMAIN-1">
-   <refsect2info>
-    <date>2002-11-27</date>
-   </refsect2info>
-   <title>
-    Inputs
-   </title>
-   <para>
-    <variablelist>
-
-     <varlistentry>
-      <term><replaceable class="PARAMETER"> domain </replaceable></term>
-      <listitem>
-       <para>
-       The name (possibly schema-qualified) of an existing domain to
-       alter.
-       </para>
-      </listitem>
-     </varlistentry>
-
-     <varlistentry>
-      <term><replaceable class="PARAMETER"> domain_constraint </replaceable></term>
-      <listitem>
-       <para>
-       New domain constraint for the domain.
-       </para>
-      </listitem>
-     </varlistentry>
-
-     <varlistentry>
-      <term><replaceable class="PARAMETER"> constraint_name </replaceable></term>
-      <listitem>
-       <para>
-       Name of an existing constraint to drop.
-       </para>
-      </listitem>
-     </varlistentry>
-
-     <varlistentry>
-      <term>CASCADE</term>
-      <listitem>
-       <para>
-        Automatically drop objects that depend on the constraint.
-       </para>
-      </listitem>
-     </varlistentry>
-
-     <varlistentry>
-      <term>RESTRICT</term>
-      <listitem>
-       <para>
-        Refuse to drop the constraint if there are any dependent
-       objects. This is the default behavior.
-       </para>
-      </listitem>
-     </varlistentry>
-
-     <varlistentry>
-      <term><replaceable class="PARAMETER">new_owner</replaceable></term>
-      <listitem>
-       <para>
-       The user name of the new owner of the domain.
-       </para>
-      </listitem>
-     </varlistentry>
-
-    </variablelist>
-   </para>
-  </refsect2>
-
-  <refsect2 id="R2-SQL-ALTERDOMAIN-2">
-   <refsect2info>
-    <date>1998-04-15</date>
-   </refsect2info>
-   <title>
-    Outputs
-   </title>
-   <para>
-
-    <variablelist>
-     <varlistentry>
-      <term><computeroutput>ALTER DOMAIN</computeroutput></term>
-      <listitem>
-       <para>
-       Message returned from domain alteration.
-       </para>
-      </listitem>
-     </varlistentry>
-
-     <varlistentry>
-      <term><computeroutput>ERROR</computeroutput></term>
-      <listitem>
-       <para>
-       Message returned if domain is not available.
-       </para>
-      </listitem>
-     </varlistentry>
-    </variablelist>
-   </para>
-  </refsect2>
  </refsynopsisdiv>
 
- <refsect1 id="R1-SQL-ALTERDOMAIN-1">
-  <refsect1info>
-   <date>2002-11-27</date>
-  </refsect1info>
-  <title>
-   Description
-  </title>
+ <refsect1>
+  <title>Description</title>
+
   <para>
    <command>ALTER DOMAIN</command> changes the definition of an existing domain.
    There are several sub-forms:
@@ -213,10 +105,74 @@ ALTER DOMAIN <replaceable class="PARAMETER">domain</replaceable>
   </para>
  </refsect1>
 
- <refsect1 id="R1-SQL-ALTERDOMAIN-2">
-  <title>
-   Usage
-  </title>
+ <refsect1>
+  <title>Parameters</title>
+
+   <para>
+    <variablelist>
+     <varlistentry>
+      <term><replaceable class="PARAMETER"> domain </replaceable></term>
+      <listitem>
+       <para>
+       The name (possibly schema-qualified) of an existing domain to
+       alter.
+       </para>
+      </listitem>
+     </varlistentry>
+
+     <varlistentry>
+      <term><replaceable class="PARAMETER"> domain_constraint </replaceable></term>
+      <listitem>
+       <para>
+       New domain constraint for the domain.
+       </para>
+      </listitem>
+     </varlistentry>
+
+     <varlistentry>
+      <term><replaceable class="PARAMETER"> constraint_name </replaceable></term>
+      <listitem>
+       <para>
+       Name of an existing constraint to drop.
+       </para>
+      </listitem>
+     </varlistentry>
+
+     <varlistentry>
+      <term>CASCADE</term>
+      <listitem>
+       <para>
+        Automatically drop objects that depend on the constraint.
+       </para>
+      </listitem>
+     </varlistentry>
+
+     <varlistentry>
+      <term>RESTRICT</term>
+      <listitem>
+       <para>
+        Refuse to drop the constraint if there are any dependent
+       objects. This is the default behavior.
+       </para>
+      </listitem>
+     </varlistentry>
+
+     <varlistentry>
+      <term><replaceable class="PARAMETER">new_owner</replaceable></term>
+      <listitem>
+       <para>
+       The user name of the new owner of the domain.
+       </para>
+      </listitem>
+     </varlistentry>
+
+    </variablelist>
+   </para>
+  </refsect1>
+
+ <refsect1>
+  <title>Examples</title>
+
   <para>
    To add a NOT NULL constraint to a domain:
    <programlisting>
@@ -243,6 +199,15 @@ ALTER DOMAIN zipcode DROP CONSTRAINT zipchk;
   </para>
  </refsect1>
 
+ <refsect1>
+  <title>Compatibility</title>
+    
+  <para>
+   The <command>ALTER DOMAIN</command> statement is compatible with SQL99,
+   except for the <literal>OWNER</> variant, which is a
+   <productname>PostgreSQL</productname> extension.
+  </para>
+ </refsect1>
 </refentry>
 
 <!-- Keep this comment at the end of the file
index 50c857b0e1af0246ef58fc9b542672edac7b2a30..cb11927d82ce2629ec73c435e77805a8ad67f882 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_function.sgml,v 1.2 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_function.sgml,v 1.3 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -65,21 +65,6 @@ ALTER FUNCTION <replaceable>name</replaceable> ( [ <replaceable class="parameter
    </varlistentry>
   </variablelist>
  </refsect1>
-   
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>ALTER FUNCTION</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the command was successful.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
 
  <refsect1>
   <title>Examples</title>
index d306b9525582c9302adb6950539514bcd74d79a9..b9819f4a5268b372682b7a36075e0a7c13fa6b0e 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_group.sgml,v 1.11 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_group.sgml,v 1.12 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -78,21 +78,6 @@ ALTER GROUP <replaceable class="PARAMETER">groupname</replaceable> RENAME TO <re
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>ALTER GROUP</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the alteration was successful.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Examples</title>
   <para>
index c20ceded6434c1f6fcbc813c3c39758dc56c96b4..61595252ebff1009564547a2756b5b202a3be5fc 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_language.sgml,v 1.2 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_language.sgml,v 1.3 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -58,21 +58,6 @@ ALTER LANGUAGE <replaceable>name</replaceable> RENAME TO <replaceable>newname</r
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>ALTER LANGUAGE</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the alteration was successful.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Compatibility</title>
     
index be31dd98eb36e75236f612cbad3c0b67ca9405c2..3a4ec0c7df7d3a9fa25e773a10a2055d3922ac6d 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_opclass.sgml,v 1.2 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_opclass.sgml,v 1.3 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -67,21 +67,6 @@ ALTER OPERATOR CLASS <replaceable>name</replaceable> USING <replaceable class="p
    </varlistentry>
   </variablelist>
  </refsect1>
-   
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>ALTER OPERATOR CLASS</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the command was successful.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
 
  <refsect1>
   <title>Compatibility</title>
index 940e3d5623574ee0c176c68d41ee4a87bd9d57ab..473b57314d4a46bd6025a3aae099e7726321bcbf 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_schema.sgml,v 1.2 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_schema.sgml,v 1.3 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -59,21 +59,6 @@ ALTER SCHEMA <replaceable>name</replaceable> RENAME TO <replaceable>newname</rep
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>ALTER SCHEMA</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the alteration was successful.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Compatibility</title>
     
index f12e9ad85a0048801b9667647e39d175484d208c..f4b114da4bdbcacf45285192ca906d2dfd1ddc34 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_sequence.sgml,v 1.3 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_sequence.sgml,v 1.4 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -23,24 +23,27 @@ PostgreSQL documentation
  </indexterm>
 
  <refsynopsisdiv>
-  <refsynopsisdivinfo>
-   <date>1999-07-20</date>
-  </refsynopsisdivinfo>
   <synopsis>
 ALTER SEQUENCE <replaceable class="parameter">seqname</replaceable> [ INCREMENT [ BY ] <replaceable class="parameter">increment</replaceable> ]
     [ MINVALUE <replaceable class="parameter">minvalue</replaceable> | NO MINVALUE ] [ MAXVALUE <replaceable class="parameter">maxvalue</replaceable> | NO MAXVALUE ]
     [ RESTART [ WITH ] <replaceable class="parameter">start</replaceable> ] [ CACHE <replaceable class="parameter">cache</replaceable> ] [ [ NO ] CYCLE ]
   </synopsis>
-  
-  <refsect2 id="R2-SQL-ALTERSEQUENCE-1">
-   <refsect2info>
-    <date>1998-09-11</date>
-   </refsect2info>
-   <title>
-    Inputs
-   </title>
-   <para>
+ </refsynopsisdiv>
 
+ <refsect1>
+  <title>Description</title>
+
+  <para>
+   <command>ALTER SEQUENCE</command> changes the parameters of an existing
+   sequence generator.  Any parameter not specifically set in the
+   <command>ALTER SEQUENCE</command> command retains its prior setting.
+  </para>
+ </refsect1>
+
+ <refsect1>
+  <title>Parameters</title>
+
+   <para>
     <variablelist>
      <varlistentry>
       <term><replaceable class="parameter">seqname</replaceable></term>
@@ -100,8 +103,8 @@ ALTER SEQUENCE <replaceable class="parameter">seqname</replaceable> [ INCREMENT
       <listitem>
        <para>
        The optional <option>RESTART WITH
-        <replaceable class="parameter">start</replaceable>
-        clause</option> enables the sequence to re-begin anywhere.
+        <replaceable class="parameter">start</replaceable></option>
+        clause changes the current value of the sequence.
        </para>
       </listitem>
      </varlistentry>
@@ -151,78 +154,11 @@ ALTER SEQUENCE <replaceable class="parameter">seqname</replaceable> [ INCREMENT
        </varlistentry>
     </variablelist>
    </para>
-  </refsect2>
-
-  <refsect2 id="R2-SQL-ALTERSEQUENCE-2">
-   <refsect2info>
-    <date>1998-09-11</date>
-   </refsect2info>
-   <title>
-    Outputs
-   </title>
-   <para>
-
-    <variablelist>
-     <varlistentry>
-      <term><computeroutput>
-ALTER SEQUENCE
-       </computeroutput></term>
-      <listitem>
-       <para>
-       Message returned if the command is successful.
-       </para>
-      </listitem>
-     </varlistentry>
-     <varlistentry>
-      <term><computeroutput>
-ERROR:  AlterSequence: MINVALUE (<replaceable class="parameter">start</replaceable>) can't be >= MAXVALUE (<replaceable class="parameter">max</replaceable>)
-       </computeroutput></term>
-      <listitem>
-       <para>
-       If the specified starting value is out of range.
-       </para>
-      </listitem>
-     </varlistentry>
-     <varlistentry>
-      <term><computeroutput>
-ERROR:  AlterSequence: START value (<replaceable class="parameter">start</replaceable>) can't be < MINVALUE (<replaceable class="parameter">min</replaceable>)
-       </computeroutput></term>
-      <listitem>
-       <para>
-       If the specified starting value is out of range.
-       </para>
-      </listitem>
-     </varlistentry>
-     <varlistentry>
-      <term><computeroutput>
-ERROR:  AlterSequence: MINVALUE (<replaceable class="parameter">min</replaceable>) can't be >= MAXVALUE (<replaceable class="parameter">max</replaceable>)
-       </computeroutput></term>
-      <listitem>
-       <para>
-       If the minimum and maximum values are inconsistent.
-       </para>
-      </listitem>
-     </varlistentry>
-    </variablelist>
-   </para>
-  </refsect2>
- </refsynopsisdiv>
+  </refsect1>
 
- <refsect1 id="R1-SQL-ALTERSEQUENCE-1">
-  <title>
-   Description
-  </title>
-
-  <para>
-   See <xref linkend="SQL-CREATESEQUENCE"> for limitations, and uses
-   of sequences.
-  </para>
- </refsect1>
+ <refsect1>
+  <title>Examples</title>
 
- <refsect1 id="R1-SQL-ALTERSEQUENCE-2">
-  <title>
-   Usage
-  </title>
   <para>
    Restart a sequence called <literal>serial</literal>, at 105:
   </para>
@@ -231,35 +167,31 @@ ALTER SEQUENCE serial RESTART WITH 105;
   </programlisting>
  </refsect1>
 
- <refsect1 id="R1-SQL-ALTERSEQUENCE-5">
-  <title>
-   Notes
-  </title>
+ <refsect1>
+  <title>Notes</title>
+
   <para>
-   To avoid blocking of concurrent transactions that obtain numbers from the same
-   sequence, a nextval operation is never rolled back; that is, once a value has 
-   been fetched it is considered used, even if the transaction that did the nextval
-   later aborts. This means that aborted transactions may leave unused "holes" in
-   the sequence of assigned values. setval operations are never rolled back, either.
+   To avoid blocking of concurrent transactions that obtain numbers from the
+   same sequence, <command>ALTER SEQUENCE</command> is never rolled back;
+   the changes take effect immediately and are not reversible.
   </para>
+
   <para>
-   <command>ALTER SEQUENCE</command> will not immediately affect backends, other than the
-   current one, which have cached sequence values. They must use up all cached values
-   prior to noticing the changed sequence parameters.  The current backend will be 
-   immediatly affected.
+   <command>ALTER SEQUENCE</command> will not immediately affect
+   <literal>nextval</> results in backends,
+   other than the current one, that have preallocated (cached) sequence
+   values. They will use up all cached values prior to noticing the changed
+   sequence parameters.  The current backend will be affected immediately.
   </para>
  </refsect1>
 
 
- <refsect1 id="R1-SQL-ALTERSEQUENCE-3">
+ <refsect1>
   <title>
    Compatibility
   </title>
 
-  <refsect2 id="R2-SQL-ALTERSEQUENCE-4">
-   <refsect2info>
-    <date>2003-03-02</date>
-   </refsect2info>
+  <refsect2>
    <title>
     SQL99
    </title>
index 2dd377c05863ea855d2ae8663b2a79e03f79f1b8..87d1a645775c7ee8a273e81e24056482fc78ec17 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.60 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.61 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -331,30 +331,6 @@ ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
     </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-    <variablelist>
-     <varlistentry>
-      <term><computeroutput>ALTER TABLE</computeroutput></term>
-      <listitem>
-       <para>
-       Message returned if successful.
-       </para>
-      </listitem>
-     </varlistentry>
-
-     <varlistentry>
-      <term><computeroutput>ERROR</computeroutput></term>
-      <listitem>
-       <para>
-       Message returned if table or column does not exist.
-       </para>
-      </listitem>
-     </varlistentry>
-    </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
index f8409136522b672c45704cd6d13dbe25769eed57..ee7afa87d89d3239eae1836aaacc88e32769957a 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_trigger.sgml,v 1.5 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_trigger.sgml,v 1.6 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -41,7 +41,7 @@ ALTER TRIGGER <replaceable class="PARAMETER">trigger</replaceable> ON <replaceab
  </refsect1>
 
  <refsect1>
-  <title>Parameter</title>
+  <title>Parameters</title>
 
   <variablelist>
    <varlistentry>
@@ -73,31 +73,6 @@ ALTER TRIGGER <replaceable class="PARAMETER">trigger</replaceable> ON <replaceab
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>ALTER TRIGGER</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if successful.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>ERROR</computeroutput></term>
-    <listitem>
-     <para>
-      If the trigger does not exist, or the new name is a duplicate of
-      another existing trigger on the table.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Examples</title>
 
index f3c7292718c034b0b87118aacf409b4d7a23de89..3db6df00528950a3967bad1fa2e099f63ddbddb3 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_user.sgml,v 1.29 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_user.sgml,v 1.30 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -175,31 +175,6 @@ ALTER USER <replaceable class="PARAMETER">username</replaceable> RESET <replacea
     </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-   <variablelist>
-    <varlistentry>
-     <term><computeroutput>ALTER USER</computeroutput></term>
-     <listitem>
-      <para>
-       Message returned if the alteration was successful.
-      </para>
-     </listitem>
-    </varlistentry>
-     
-    <varlistentry>
-     <term><computeroutput>ERROR:  ALTER USER: user "username" does not exist</computeroutput></term>
-     <listitem>
-      <para>
-       Error message returned if the specified user is not known to
-       the database system.
-      </para>
-     </listitem>
-    </varlistentry>
-   </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
index 93d867636336ab9622d99da9879b2cc5a847b194..f0be5af1dbdab40aceba6dc10ac964b15e2803f7 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/analyze.sgml,v 1.13 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/analyze.sgml,v 1.14 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -77,21 +77,6 @@ ANALYZE [ VERBOSE ] [ <replaceable class="PARAMETER">table</replaceable> [ (<rep
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>ANALYZE</computeroutput></term>
-    <listitem>
-     <para>
-      The command is complete.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
index 67393c891b1c0c1eb4befc585cc8eff23e0a361f..5acab231b3c2847264b9485e27fc0449f1a0d19d 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/begin.sgml,v 1.25 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/begin.sgml,v 1.26 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -28,21 +28,25 @@ BEGIN [ WORK | TRANSACTION ]
   <title>Description</title>
 
   <para>
-   By default, <productname>PostgreSQL</productname> executes
-   transactions in <quote>autocommit</quote> mode, that is, each
-   statement is executed in its own transaction and a commit is
-   implicitly performed at the end of the statement (if execution was
-   successful, otherwise a rollback is done).
    <command>BEGIN</command> initiates a transaction block, that is,
    all statements after <command>BEGIN</command> command will be
    executed in a single transaction until an explicit <xref
    linkend="sql-commit" endterm="sql-commit-title"> or <xref
-   linkend="sql-rollback" endterm="sql-rollback-title">.  Statements
-   are executed more quickly in a transaction block, because
+   linkend="sql-rollback" endterm="sql-rollback-title"> is given.
+   By default (without <command>BEGIN</command>),
+   <productname>PostgreSQL</productname> executes
+   transactions in <quote>autocommit</quote> mode, that is, each
+   statement is executed in its own transaction and a commit is
+   implicitly performed at the end of the statement (if execution was
+   successful, otherwise a rollback is done).
+  </para>
+
+  <para>
+   Statements are executed more quickly in a transaction block, because
    transaction start/commit requires significant CPU and disk
    activity. Execution of multiple statements inside a transaction is
-   also useful to ensure consistency when changing several related
-   tables: other sessions will be unable to see the intermediate states
+   also useful to ensure consistency when making several related changes:
+   other sessions will be unable to see the intermediate states
    wherein not all the related updates have been done.
   </para>
  </refsect1>
@@ -63,31 +67,6 @@ BEGIN [ WORK | TRANSACTION ]
   </variablelist>
  </refsect1>
   
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>BEGIN</computeroutput></term>
-    <listitem>
-     <para>
-      This signifies that a new transaction has been started.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>WARNING:  BEGIN: already a transaction in progress</computeroutput></term>
-    <listitem>
-     <para>
-      This indicates that a transaction was already in progress.  The
-      current transaction is not affected.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-  
  <refsect1>
   <title>Notes</title>
 
@@ -100,7 +79,12 @@ BEGIN [ WORK | TRANSACTION ]
   <para>
    Use <xref linkend="SQL-COMMIT" endterm="SQL-COMMIT-TITLE"> or
    <xref linkend="SQL-ROLLBACK" endterm="SQL-ROLLBACK-TITLE">
-   to terminate a transaction.
+   to terminate a transaction block.
+  </para>
+
+  <para>
+   Issuing <command>BEGIN</> when already inside a transaction block will
+   provoke a warning message.  The state of the transaction is not affected.
   </para>
  </refsect1>
 
@@ -138,6 +122,15 @@ BEGIN;
    about the transaction semantics when porting database applications.
   </para>
  </refsect1>
+
+ <refsect1>
+  <title>See Also</title>
+
+  <simplelist type="inline">
+   <member><xref linkend="sql-commit" endterm="sql-commit-title"></member>
+   <member><xref linkend="sql-rollback" endterm="sql-rollback-title"></member>
+  </simplelist>
+ </refsect1>
 </refentry>
  
 <!-- Keep this comment at the end of the file
index 634f11de8b9756de4909971bebca00e5e7f0b3ae..c3ea5ab8cfee9ae26ed245666e0591e7ecb85208 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/close.sgml,v 1.17 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/close.sgml,v 1.18 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -37,9 +37,10 @@ CLOSE <replaceable class="PARAMETER">cursor</replaceable>
   <para>
    Every non-holdable open cursor is implicitly closed when a
    transaction is terminated by <command>COMMIT</command> or
-   <command>ROLLBACK</command>. Holdable cursors are implicitely
-   closed if the transaction that created them aborts via
-   <command>ROLLBACK</command>; if this does not happen, the holdable
+   <command>ROLLBACK</command>.  A holdable cursor is implicitly
+   closed if the transaction that created it aborts via
+   <command>ROLLBACK</command>.  If the creating transaction successfully
+   commits, the holdable
    cursor remains open until an explicit <command>CLOSE</command> is
    executed, or the client disconnects.
   </para>
@@ -59,32 +60,6 @@ CLOSE <replaceable class="PARAMETER">cursor</replaceable>
    </varlistentry>
   </variablelist>
  </refsect1>
-  
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>CLOSE CURSOR</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the cursor is successfully closed.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>ERROR:  cursor "<replaceable class="PARAMETER">cursor</replaceable>" does not exist</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if <replaceable
-      class="PARAMETER">cursor</replaceable> is not declared or has
-      already been closed.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
 
  <refsect1>
   <title>Notes</title>
index eaa1763d2ae8897fce36196f4a54046aa25b352a..1eaa97e2e1e3121cd5aed555a0cc03e38fc69021 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/cluster.sgml,v 1.27 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/cluster.sgml,v 1.28 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -97,21 +97,6 @@ CLUSTER
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>CLUSTER</computeroutput></term>
-    <listitem>
-     <para>
-      The clustering was done successfully.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
index dce618f3c01121c6936c68f7e65dd9d781a520e3..8d4e082ec079e7f8897fe3dbb898eda49ed0b081 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/clusterdb.sgml,v 1.12 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/clusterdb.sgml,v 1.13 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -54,6 +54,12 @@ PostgreSQL documentation
    library will apply.
   </para>
 
+  <para>
+   In case of difficulty, see <xref linkend="SQL-CLUSTER"
+   endterm="sql-cluster-title"> and <xref linkend="APP-PSQL"> for
+   discussions of potential problems and error messages.
+  </para>
+
  </refsect1>
 
 
@@ -176,37 +182,6 @@ PostgreSQL documentation
  </refsect1>
 
 
- <refsect1>
-  <title>Diagnostics</title>
-
-   <para>
-    <variablelist>
-     <varlistentry>
-      <term><computeroutput>CLUSTER</computeroutput></term>
-      <listitem>
-       <para>
-        The database was successfully clustered.
-       </para>
-      </listitem>
-     </varlistentry>
-
-     <varlistentry>
-      <term><computeroutput>clusterdb: Cluster failed.</computeroutput></term>
-      <listitem>
-       <para>
-        Something went wrong. <application>clusterdb</application> is only a wrapper
-        script. See <xref linkend="SQL-CLUSTER" endterm="sql-cluster-title">
-        and <xref linkend="APP-PSQL"> for a detailed
-        discussion of error messages and potential problems.
-       </para>
-      </listitem>
-     </varlistentry>
-
-    </variablelist>
-   </para>
- </refsect1>
-
-
  <refsect1>
   <title>Environment</title>
 
index 6927fb10a4a3758c0834bb8153d20a50344a78e0..7e0f4318bfd034bcca5df8c098ee215530c5139b 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/comment.sgml,v 1.22 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/comment.sgml,v 1.23 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -96,21 +96,6 @@ COMMENT ON
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>COMMENT</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the comment was successfully changed.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
index b4992f73eab89cf8477df0e02e3c398fd7f92a25..1c72ea0b459e7a1af3d039a1c7226e09afcace65 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/commit.sgml,v 1.16 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/commit.sgml,v 1.17 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -49,30 +49,6 @@ COMMIT [ WORK | TRANSACTION ]
    </varlistentry>
   </variablelist>
  </refsect1>
-   
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>COMMIT</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the transaction was successfully committed.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>WARNING:  COMMIT: no transaction in progress</computeroutput></term>
-    <listitem>
-     <para>
-      Message if there is no transaction in progress.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
 
  <refsect1>
   <title>Notes</title>
@@ -81,6 +57,11 @@ COMMIT [ WORK | TRANSACTION ]
    Use <xref linkend="SQL-ROLLBACK" endterm="SQL-ROLLBACK-TITLE"> to
    abort a transaction.
   </para>
+
+  <para>
+   Issuing <command>COMMIT</> when not inside a transaction does
+   no harm, but it will provoke a warning message.
+  </para>
  </refsect1>
 
  <refsect1>
@@ -103,6 +84,15 @@ COMMIT;
    WORK</literal>. Otherwise, this command is fully conforming.
   </para>
  </refsect1>
+
+ <refsect1>
+  <title>See Also</title>
+
+  <simplelist type="inline">
+   <member><xref linkend="sql-begin" endterm="sql-begin-title"></member>
+   <member><xref linkend="sql-rollback" endterm="sql-rollback-title"></member>
+  </simplelist>
+ </refsect1>
 </refentry>
 
 <!-- Keep this comment at the end of the file
index 1b3cd2d8b0044150e4ccca9d11ae06f964d99209..24dc567acf7fa9bf6910b7bc5adf31ed2c066235 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/copy.sgml,v 1.48 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/copy.sgml,v 1.49 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -172,21 +172,6 @@ COPY <replaceable class="parameter">table</replaceable> [ ( <replaceable class="
    </varlistentry>
   </variablelist>
  </refsect1>
-  
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>COPY</computeroutput></term>
-    <listitem>
-     <para>
-      The copy operation completed successfully.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
 
  <refsect1>
   <title>Notes</title>
index f0f212db18df9eadb8344bfae0355d42b640e299..e7d0400ff790e8a1672c6dece82e9fa4a2d4da94 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_aggregate.sgml,v 1.27 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_aggregate.sgml,v 1.28 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -218,21 +218,6 @@ CREATE AGGREGATE <replaceable class="PARAMETER">name</replaceable> (
    written in any order, not just the order illustrated above.
   </para>
  </refsect1>
-
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>CREATE AGGREGATE</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the command completes successfully.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
   
  <refsect1>
   <title>Examples</title>
index b89aead0bf4bea5a68f6e0064ae333820dcd0e37..08f48fea1dc36b9938c68f6fead19d93a29e3ede 100644 (file)
@@ -1,4 +1,4 @@
-<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/create_cast.sgml,v 1.12 2003/08/31 17:32:21 petere Exp $ -->
+<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/create_cast.sgml,v 1.13 2003/09/09 18:28:52 tgl Exp $ -->
 
 <refentry id="SQL-CREATECAST">
  <refmeta>
@@ -189,21 +189,6 @@ SELECT 'The time is ' || CAST(now() AS text);
 
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>CREATE CAST</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the cast was successfully created.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1 id="sql-createcast-notes">
   <title>Notes</title>
 
index 1cfcc39a8ed705375d0ec16ca879f0b1aa71ffc6..d48b3eea952402bc6635581ba99fa1d4cbf0a039 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_constraint.sgml,v 1.10 2003/08/31 17:32:21 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_constraint.sgml,v 1.11 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -99,21 +99,6 @@ CREATE CONSTRAINT TRIGGER <replaceable class="parameter">name</replaceable>
      </varlistentry>
     </variablelist>
  </refsect1>
-
- <refsect1>
-  <title>Diagnostics</title>
-    
-    <variablelist>
-     <varlistentry>
-      <term><computeroutput>CREATE TRIGGER</computeroutput></term>
-      <listitem>
-       <para>
-       Message returned if successful.
-       </para>
-      </listitem>
-     </varlistentry>
-    </variablelist>
- </refsect1>
 </refentry>
 
 <!-- Keep this comment at the end of the file
index 6623bd8c5f7e5867812201cd6034397e3fd6f898..441b80ef76c4d1c65f5d57596d662a81bcd8ee3b 100644 (file)
@@ -1,4 +1,4 @@
-<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/create_conversion.sgml,v 1.11 2003/08/31 17:32:21 petere Exp $ -->
+<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/create_conversion.sgml,v 1.12 2003/09/09 18:28:52 tgl Exp $ -->
 
 <refentry id="SQL-CREATECONVERSION">
  <refmeta>
@@ -119,21 +119,6 @@ conv_proc(
    </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>CREATE CONVERSION</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the conversion was successfully created.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1 id="sql-createconversion-notes">
   <title>Notes</title>
 
index 6adf9b7ec1b5031c5428cd858c593b9a05608a04..7a71e4a5982a6da1ed70f3a167fcedbd263fe477 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_domain.sgml,v 1.14 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_domain.sgml,v 1.15 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -156,21 +156,6 @@ where <replaceable class="PARAMETER">constraint</replaceable> is:
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>CREATE DOMAIN</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the domain was successfully created.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Examples</title>
 
index ef8274494e073265a3037c3bd1b74a1fa842a2df..39ba9ff5881a0c74f0ad80acc90cd95114ecf96d 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_function.sgml,v 1.49 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_function.sgml,v 1.50 2003/09/09 18:28:52 tgl Exp $
 -->
 
 <refentry id="SQL-CREATEFUNCTION">
@@ -314,21 +314,6 @@ CREATE [ OR REPLACE ] FUNCTION <replaceable class="parameter">name</replaceable>
 
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>CREATE FUNCTION</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the function was successfully created.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1 id="sql-createfunction-notes">
   <title>Notes</title>
 
index 1fb983721bfa48411f5d8e378ff7d4ae19bb504a..dea3c18ff9953334b982e814fead240e06e94af0 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_group.sgml,v 1.12 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_group.sgml,v 1.13 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -84,21 +84,6 @@ where <replaceable class="PARAMETER">option</replaceable> can be:
 
     </variablelist>
  </refsect1>
-  
- <refsect1>
-  <title>Diagnostics</title>
-
-    <variablelist>
-     <varlistentry>
-      <term><computeroutput>CREATE GROUP</computeroutput></term>
-      <listitem>
-       <para>
-       Message returned if the group was successfully created.
-       </para>
-      </listitem>
-     </varlistentry>
-    </variablelist>
- </refsect1>
 
  <refsect1>
   <title>Examples</title>
index 06c37f497eeeb3f601b2f775f664ae1607219078..3081f68ac859c0fe1c2a15754b79495cfc52c5aa 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_index.sgml,v 1.40 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_index.sgml,v 1.41 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -185,21 +185,6 @@ CREATE [ UNIQUE ] INDEX <replaceable class="parameter">index_name</replaceable>
     </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>CREATE INDEX</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the index was successfully created.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
index c729ecc56f9ae2e61167f5c43cbac26af5ffce69..45834255bb8fb57babec0df00d0598a45e6d3b55 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_language.sgml,v 1.34 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_language.sgml,v 1.35 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -147,21 +147,6 @@ CREATE [ TRUSTED ] [ PROCEDURAL ] LANGUAGE <replaceable class="parameter">langna
    </variablelist>
  </refsect1>
 
- <refsect1 id="sql-createlanguage-diagnostics">
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>CREATE LANGUAGE</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the language was successfully created.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1 id="sql-createlanguage-notes">
   <title>Notes</title>
 
index f205eab8855768837b2dea48c568af8c0c3c0400..2ecf1cd4f291adc1c820d8e8e1f5d3c55870847d 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_opclass.sgml,v 1.9 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_opclass.sgml,v 1.10 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -204,21 +204,6 @@ CREATE OPERATOR CLASS <replaceable class="parameter">name</replaceable> [ DEFAUL
    clauses may appear in any order.
   </para>
  </refsect1>
-
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>CREATE OPERATOR CLASS</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the operator class was successfully created.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
   
  <refsect1>
   <title>Examples</title>
index 67470102f769d4d46e1ad75abb68bbf3756462a6..d806bdd9d6d66e1c166a51af3d033858b25a6a24 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_operator.sgml,v 1.37 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_operator.sgml,v 1.38 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -253,21 +253,6 @@ COMMUTATOR = OPERATOR(myschema.===) ,
 </programlisting>  
   </para>
  </refsect1>
-
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>CREATE OPERATOR</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the operator was successfully created.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
   
  <refsect1>
   <title>Notes</title>
index 2fccd22a10dd6086de8b0ea9ce540817b5bb2f21..996f5497575436e8931c0278ec666774761088e4 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_rule.sgml,v 1.40 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_rule.sgml,v 1.41 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -166,21 +166,6 @@ CREATE [ OR REPLACE ] RULE <replaceable class="parameter">name</replaceable> AS
   </para>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>CREATE RULE</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the rule was successfully created.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
index 3641587b9ad154923b90b835834d57cd98e1c8f6..cf98557998cf514a600265542a523da9a9282879 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_schema.sgml,v 1.7 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_schema.sgml,v 1.8 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -95,30 +95,6 @@ CREATE SCHEMA AUTHORIZATION <replaceable class="parameter">username</replaceable
     </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>CREATE SCHEMA</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the schema was successfully created.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>ERROR:  namespace "<replaceable class="parameter">schemaname</replaceable>" already exists</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the schema specified already exists.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
index 23cf859cd50dc9b9c49292a22767b2749253294b..b558731137a94c43f5f5d45cc6eb266c0c6c915d 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_table.sgml,v 1.71 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_table.sgml,v 1.72 2003/09/09 18:28:52 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -564,23 +564,6 @@ and <replaceable class="PARAMETER">table_constraint</replaceable> is:
   </variablelist>
  </refsect1>    
 
-
- <refsect1 id="SQL-CREATETABLE-diagnostics">
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>CREATE TABLE</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the table was successfully created.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
-
  <refsect1 id="SQL-CREATETABLE-notes">
   <title>Notes</title>
 
index ac05e2d42e559851c2d6447646a803ac2d8ada2d..0d86492b752920fc7041bb6e0a9c1b898bc5a9c1 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_table_as.sgml,v 1.15 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_table_as.sgml,v 1.16 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -101,18 +101,6 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable>table_name
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <para>
-   Refer to <xref linkend="sql-createtable"
-   endterm="sql-createtable-title">, <xref linkend="sql-select"
-   endterm="sql-select-title">, and <xref linkend="sql-execute"
-   endterm="sql-execute-title"> for a summary of possible output
-   messages.
-  </para>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
index cf580b1ab934dc33e3e7a0b2316b27c58a6366b1..af75dd9841e5085c5b5649e9d8b5d015976690ae 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_trigger.sgml,v 1.35 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_trigger.sgml,v 1.36 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -171,21 +171,6 @@ CREATE TRIGGER <replaceable class="PARAMETER">name</replaceable> { BEFORE | AFTE
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>CREATE TRIGGER</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the trigger was successfully created.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1 id="SQL-CREATETRIGGER-notes">
   <title>Notes</title>
 
index 6e98d5e00ff428fb76079242682063197746d0a8..f287c12b4b5ebe77f0c272e9a90431b955ba20f2 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_type.sgml,v 1.44 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_type.sgml,v 1.45 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -408,21 +408,6 @@ CREATE TYPE <replaceable class="parameter">typename</replaceable> (
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>CREATE TYPE</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the type was successfully created.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1 id="SQL-CREATETYPE-notes">
   <title>Notes</title>
 
index f22b8854f07dcf49e00f61ab0b0e6b2877baff37..ff294c63eae9af6fba258d46f942b727de14689e 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_user.sgml,v 1.27 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_user.sgml,v 1.28 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -167,21 +167,6 @@ where <replaceable class="PARAMETER">option</replaceable> can be:
     </variablelist>
  </refsect1> 
 
- <refsect1>
-  <title>Diagnostics</title>
-
-   <variablelist>
-    <varlistentry>
-     <term><computeroutput>CREATE USER</computeroutput></term>
-     <listitem>
-      <para>
-       Message returned if the user account was successfully created.
-      </para>
-     </listitem>
-    </varlistentry>
-   </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
index 11da825a72361d4ab5e8baea60cf0e40f9cf0886..887831d325f288ba5dd1b8fba54b08a165e096e3 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/deallocate.sgml,v 1.3 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/deallocate.sgml,v 1.4 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -63,21 +63,6 @@ DEALLOCATE [ PREPARE ] <replaceable class="parameter">plan_name</replaceable>
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>DEALLOCATE</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the prepared statement was deallocated successfully.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Compatibility</title>
 
index 0f19dd6a811e5cdcd160f7efe741abc90344edf7..4ec2d9de1b569a10ec2a2de00fe84fd5e661606b 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_aggregate.sgml,v 1.24 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_aggregate.sgml,v 1.25 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -78,31 +78,6 @@ DROP AGGREGATE <replaceable class="PARAMETER">name</replaceable> ( <replaceable
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>DROP AGGREGATE</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the command was successful.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>ERROR: RemoveAggregate: aggregate '<replaceable class="parameter">name</replaceable>' for type <replaceable class="parameter">type</replaceable> does not exist</computeroutput></term>
-    <listitem>
-     <para>
-      This message is returned if the specified aggregate function
-      does not exist.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Examples</title>
 
index b8627e5156bba417520f2a45d5f7260679cfa598..e108bfcbbc7599d2570a43167c52e2fca5ed4406 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_domain.sgml,v 1.11 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_domain.sgml,v 1.12 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -68,30 +68,6 @@ DROP DOMAIN <replaceable class="PARAMETER">domainname</replaceable> [, ...]  [ C
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>DROP DOMAIN</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the command was successful.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>ERROR:  RemoveDomain: type '<replaceable class="parameter">domainname</replaceable>' does not exist</computeroutput></term>
-    <listitem>
-     <para>
-      This message occurs if the specified domain does not exist.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1 id="SQL-DROPDOMAIN-examples">
   <title>Examples</title>
 
index 1a51b2b58c5a18907aaf9457533e464e6623d9c4..ec68f162c29323d4ff93c4cf3c07935d0e044885 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_function.sgml,v 1.26 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_function.sgml,v 1.27 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -80,30 +80,6 @@ DROP FUNCTION <replaceable class="parameter">name</replaceable> ( [ <replaceable
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>DROP FUNCTION</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the command completes successfully.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>WARNING:  RemoveFunction: Function <replaceable class="parameter">name</replaceable> (<replaceable class="parameter">types</replaceable>) does not exist</computeroutput></term>
-    <listitem>
-     <para>
-      This message is output if the function specified does not exist.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1 id="SQL-DROPFUNCTION-examples">
   <title>Examples</title>
 
index ea350586810b44df21f6e1d9594e240c97d0495f..2473ccf2c563121cb670be04cec9889e291d0bca 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_group.sgml,v 1.6 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_group.sgml,v 1.7 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -47,21 +47,6 @@ DROP GROUP <replaceable class="PARAMETER">name</replaceable>
    </varlistentry>
   </variablelist>
  </refsect1>
-  
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>DROP GROUP</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the group was successfully removed.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
 
  <refsect1>
   <title>Examples</title>
index 720d601e76ccf0a5b8e67b45d172c0c775da0858..9f71d0cf07b437b31c3e323f8a1d8099e88516fb 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_index.sgml,v 1.19 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_index.sgml,v 1.20 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -68,32 +68,6 @@ DROP INDEX <replaceable class="PARAMETER">name</replaceable> [, ...] [ CASCADE |
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>DROP INDEX</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the command completes successfully.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>ERROR: index "<replaceable class="PARAMETER">name</replaceable>" does not exist</computeroutput></term>
-    <listitem>
-     <para>
-      This message is returned if <replaceable
-      class="PARAMETER">name</replaceable> is not an existing
-      index.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Examples</title>
 
index 1be0bef48b05b4c82b0b096a4a2d4ef60cf84d8c..4a997ac715d5c79022afa7ce4f84f731f0352d1f 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_language.sgml,v 1.18 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_language.sgml,v 1.19 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -69,32 +69,6 @@ DROP [ PROCEDURAL ] LANGUAGE <replaceable class="PARAMETER">name</replaceable> [
    </varlistentry>
   </variablelist>
  </refsect1>
-
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>DROP LANGUAGE</computeroutput></term>
-    <listitem>
-     <para>
-      This message is returned if the language was successfully dropped.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>ERROR: Language "<replaceable class="parameter">name</replaceable>" doesn't exist</computeroutput></term>
-    <listitem>
-     <para>
-      This message is returned if a language called <replaceable
-      class="parameter">name</replaceable> is not found in the
-      database.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
   
  <refsect1>
   <title>Examples</title>
index dcd72a303832cbd635821bc63765935c02f2cc1d..85f02cd473877e2dc9cd8ff9a9444a0dee12969c 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_opclass.sgml,v 1.5 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_opclass.sgml,v 1.6 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -76,21 +76,6 @@ DROP OPERATOR CLASS <replaceable class="PARAMETER">name</replaceable> USING <rep
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>DROP OPERATOR CLASS</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the command was successful.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Examples</title>
 
index 427e332b75313941b54157a3435129bca562ebe3..2b3267b336769c0653cf78e3c6cff3de81e90a2d 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_operator.sgml,v 1.20 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_operator.sgml,v 1.21 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -88,50 +88,6 @@ DROP OPERATOR <replaceable class="PARAMETER">name</replaceable> ( <replaceable c
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>DROP OPERATOR</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the command was successful.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>ERROR:  RemoveOperator: binary operator '<replaceable class="PARAMETER">name</replaceable>' taking '<replaceable class="PARAMETER">lefttype</replaceable>' and '<replaceable class="PARAMETER">righttype</replaceable>' does not exist</computeroutput></term>
-    <listitem>
-     <para>
-      This message is returned if the specified binary operator does not exist.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>ERROR: RemoveOperator: left unary operator '<replaceable class="PARAMETER">name</replaceable>' taking '<replaceable class="PARAMETER">lefttype</replaceable>' does not exist</computeroutput></term>
-    <listitem>
-     <para>
-      This message is returned if the specified left unary operator
-      does not exist.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>ERROR: RemoveOperator: right unary operator '<replaceable class="PARAMETER">name</replaceable>' taking '<replaceable class="PARAMETER">righttype</replaceable>' does not exist</computeroutput></term>
-    <listitem>
-     <para>
-      This message is returned if the specified right unary operator
-      does not exist.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Examples</title>
 
index df34ddd54b6ffcc5f1a96295f1dd05b3daf9b66c..abd0bfc7014355ab8c41f1781e0469090ee4ffe1 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_rule.sgml,v 1.18 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_rule.sgml,v 1.19 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -76,30 +76,6 @@ DROP RULE <replaceable class="PARAMETER">name</replaceable> ON <replaceable clas
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>DROP RULE</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the command was successful.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>ERROR:  Rule "<replaceable class="parameter">name</replaceable>" not found</computeroutput></term>
-    <listitem>
-     <para>
-      Message if the specified rule does not exist.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Examples</title>
 
index 77ccbbb8f3416446664bea29a1878bb9eae2e685..5a52d3da3c016832650e85f2ac4a1ee2b3a6c4f7 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_schema.sgml,v 1.4 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_schema.sgml,v 1.5 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -73,30 +73,6 @@ DROP SCHEMA <replaceable class="PARAMETER">name</replaceable> [, ...] [ CASCADE
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>DROP SCHEMA</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the schema was successfully dropped.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>ERROR: Schema "<replaceable class="parameter">name</replaceable>" does not exist</computeroutput></term>
-    <listitem>
-     <para>
-      This message is returned if the specified schema does not exist.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Examples</title>
 
index a23dd4ad16a9c35dfea636ba50d521d8a65ad9ec..cc2e1bed1f1ba1dbf9d609cd6f86fe03871362ab 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_sequence.sgml,v 1.18 2003/08/31 17:32:22 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_sequence.sgml,v 1.19 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -66,30 +66,6 @@ DROP SEQUENCE <replaceable class="PARAMETER">name</replaceable> [, ...] [ CASCAD
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>DROP SEQUENCE</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the sequence was successfully dropped.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>ERROR: sequence "<replaceable class="parameter">name</replaceable>" does not exist</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the specified sequence does not exist.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Examples</title>
 
index 61e253dc50b54daac28d324b8afde9369e492428..b37a428eb625e647c655b5adcc1a2fda00c12432 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_table.sgml,v 1.19 2003/08/31 17:32:23 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_table.sgml,v 1.20 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -78,30 +78,6 @@ DROP TABLE <replaceable class="PARAMETER">name</replaceable> [, ...] [ CASCADE |
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>DROP TABLE</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the command completes successfully.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>ERROR: table "<replaceable class="parameter">name</replaceable>" does not exist</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the specified table does not exist.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Examples</title>
 
index f4a24e90198742c2d97c7919460ced8a1d2d3424..6505815fbeea6d752d9035f7adae00cbe0eb373f 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_trigger.sgml,v 1.16 2003/08/31 17:32:23 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_trigger.sgml,v 1.17 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -78,30 +78,6 @@ DROP TRIGGER <replaceable class="PARAMETER">name</replaceable> ON <replaceable c
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>DROP TRIGGER</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the trigger was successfully dropped.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>ERROR: DropTrigger: there is no trigger <replaceable class="PARAMETER">name</replaceable> on relation "<replaceable class="parameter">table</replaceable>"</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the specified trigger does not exist.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1 id="SQL-DROPTRIGGER-examples">
   <title>Examples</title>
 
index 18548fff14f201f1bda5d0bb0c984ecd2a520a00..c8aa06c73a13d9db1a2142412abed8657276a960 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_type.sgml,v 1.22 2003/08/31 17:32:23 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_type.sgml,v 1.23 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -67,30 +67,6 @@ DROP TYPE <replaceable class="PARAMETER">typename</replaceable> [, ...] [ CASCAD
    </varlistentry>
   </variablelist>
  </refsect1>
-
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>DROP TYPE</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the command was successful.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>ERROR:  RemoveType: type '<replaceable class="parameter">typename</replaceable>' does not exist</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the specified type does not exist.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
   
  <refsect1 id="SQL-DROPTYPE-examples">
   <title>Examples</title>
index b17d2bccd80c1f339601a39bf32284ae9f9db8a4..4e03d10838bfc1f7eaad325ee0d359559b7699db 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_view.sgml,v 1.18 2003/08/31 17:32:23 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_view.sgml,v 1.19 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -68,30 +68,6 @@ DROP VIEW <replaceable class="PARAMETER">name</replaceable> [, ...] [ CASCADE |
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>DROP VIEW</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the command was successful.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>ERROR: view <replaceable class="parameter">name</replaceable> does not exist</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the specified view does not exist.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Examples</title>
 
index e4d9dd6e4885b9e0a77144747a839076097ac7ad..bb9016d69a674a18d2d94e45b18d2dd81d437cb4 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/explain.sgml,v 1.28 2003/09/08 22:33:13 tgl Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/explain.sgml,v 1.29 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -119,16 +119,6 @@ ROLLBACK;
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <para>
-   <command>EXPLAIN</command> prints the execution plan of the
-   specified statement from the <productname>PostgreSQL</productname>
-   planner.
-  </para>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
index d6622a4ea78732c4ee48d66c1c325f254f436bc9..9c1050b835e3089514198464da8bad1c499771bf 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/fetch.sgml,v 1.31 2003/08/31 17:32:23 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/fetch.sgml,v 1.32 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -280,21 +280,6 @@ where <replaceable class="PARAMETER">direction</replaceable> can be empty or one
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>ERROR:  cursor "<replaceable class="PARAMETER">cursor</replaceable>" does not exist</computeroutput></term>
-    <listitem>
-     <para>
-      There is no cursor with the specified name.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
index 08cb017454d96f66e92afca33f9cfb0f6719893a..8c24cfb6177965e50b7b33a2463f708fbd688a3b 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/lock.sgml,v 1.36 2003/08/31 17:32:23 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/lock.sgml,v 1.37 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -132,21 +132,6 @@ where <replaceable class="PARAMETER">lockmode</replaceable> is one of:
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>LOCK TABLE</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the lock was successfully acquired.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
index 8d6edac63f60538ccc04b071bd56dc2197738faf..dde512d3e3d8adfea31fb0f79afc812a7a6867f3 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/notify.sgml,v 1.21 2003/08/31 17:32:23 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/notify.sgml,v 1.22 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -133,21 +133,6 @@ NOTIFY <replaceable class="PARAMETER">name</replaceable>
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>NOTIFY</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned when the commmand has executed.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Examples</title>
 
index b2a0c040f6b134fa4fa6b26f2ea4865d8e560591..7777cdee8a13d7fa06834fb9a231f009ca410202 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/prepare.sgml,v 1.6 2003/08/31 17:32:24 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/prepare.sgml,v 1.7 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -112,21 +112,6 @@ PREPARE <replaceable class="PARAMETER">plan_name</replaceable> [ (<replaceable c
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>PREPARE</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the statement has been prepared successfully.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
index 8258b460f17ac017ff49a6a9791b7cdeb309127a..b919f2c53cf2eabcb0fd0d84de35cc2812bfe9b2 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/reindex.sgml,v 1.18 2003/08/31 17:32:24 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/reindex.sgml,v 1.19 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -150,21 +150,6 @@ REINDEX { DATABASE | TABLE | INDEX } <replaceable class="PARAMETER">name</replac
    </varlistentry>
   </variablelist>
  </refsect1>
-  
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>REINDEX</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the indexes were successfully recreated.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
 
  <refsect1>
   <title>Examples</title>
index 48d75ad9afab208d1af84169de4d71dc2197a695..58169d17de00e7e53d6a15f31a13a56576b3e0bf 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/reset.sgml,v 1.21 2003/08/31 17:32:24 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/reset.sgml,v 1.22 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -81,14 +81,6 @@ SET <replaceable class="parameter">parameter</replaceable> TO DEFAULT
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <para>
-   See under the <xref linkend="sql-set" endterm="sql-set-title">.
-  </para>
- </refsect1>
-
  <refsect1>
   <title>Examples</title>
 
index 33c6c3f74ad2d023050067689529bed8c5e7417d..cac7a5cc5e841db22e9cf2b053ea695820f496f6 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/rollback.sgml,v 1.15 2003/08/31 17:32:24 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/rollback.sgml,v 1.16 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -49,30 +49,6 @@ ROLLBACK [ WORK | TRANSACTION ]
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-       
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>ROLLBACK</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if successful.
-     </para>
-    </listitem>
-   </varlistentry>
-     
-   <varlistentry>
-    <term><computeroutput>WARNING:  ROLLBACK: no transaction in progress</computeroutput></term>
-    <listitem>
-     <para>
-      If there is not any transaction currently in progress.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
@@ -80,6 +56,11 @@ ROLLBACK [ WORK | TRANSACTION ]
    Use <xref linkend="SQL-COMMIT" endterm="SQL-COMMIT-TITLE"> to
    successfully terminate a transaction.
   </para>
+
+  <para>
+   Issuing <command>ROLLBACK</> when not inside a transaction does
+   no harm, but it will provoke a warning message.
+  </para>
  </refsect1>
 
  <refsect1>
@@ -102,6 +83,15 @@ ROLLBACK;
    WORK</literal>. Otherwise, this command is fully conforming.
   </para>
  </refsect1>
+
+ <refsect1>
+  <title>See Also</title>
+
+  <simplelist type="inline">
+   <member><xref linkend="sql-begin" endterm="sql-begin-title"></member>
+   <member><xref linkend="sql-commit" endterm="sql-commit-title"></member>
+  </simplelist>
+ </refsect1>
 </refentry>
 
 <!-- Keep this comment at the end of the file
index 03330d0b7b9bcd0c30fe26344178da95536a8f65..4189958e0b1f90ec12b1f55d1e2fa5f5a21374f1 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/select_into.sgml,v 1.23 2003/08/31 17:32:24 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/select_into.sgml,v 1.24 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -78,18 +78,6 @@ SELECT [ ALL | DISTINCT [ ON ( <replaceable class="PARAMETER">expression</replac
   </para>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <para>
-   Refer to
-   <xref linkend="sql-createtable" endterm="sql-createtable-title">
-   and
-   <xref linkend="sql-select" endterm="sql-select-title">
-   for a summary of possible output messages.
-  </para>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
index 9149d557dcfec6d792bf75f4522da4928fc38b2f..12ebb2f61ce3ffce1d19f0ea218e76e9f2e5905e 100644 (file)
@@ -1,4 +1,4 @@
-<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/set_transaction.sgml,v 1.15 2003/08/31 17:32:24 petere Exp $ -->
+<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/set_transaction.sgml,v 1.16 2003/09/09 18:28:53 tgl Exp $ -->
 <refentry id="SQL-SET-TRANSACTION">
  <refmeta>
   <refentrytitle id="SQL-SET-TRANSACTION-TITLE">SET TRANSACTION</refentrytitle>
@@ -120,10 +120,10 @@ SET default_transaction_isolation = '<replaceable>value</replaceable>'
   <title>Compatibility</title>
 
   <para>
-   Both commands are defined in the SQL standard.
+   Both commands are defined in the <acronym>SQL</acronym> standard.
    <literal>SERIALIZABLE</literal> is the default transaction
-   isolation level in <acronym>SQL</acronym>; in PostgreSQL it is
-   <literal>READ COMMITED</literal>, but you can change it as
+   isolation level in the standard; in PostgreSQL the default is
+   ordinarily <literal>READ COMMITTED</literal>, but you can change it as
    described above.  <productname>PostgreSQL</productname> does not
    provide the isolation levels <literal>READ UNCOMMITTED</literal>
    and <literal>REPEATABLE READ</literal>. Because of multiversion
index bbdecc76e2d081615f90693d6a1be600900568a8..3acaead1eb846303d0ae3e471000966974987b9e 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/show.sgml,v 1.31 2003/08/31 17:32:24 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/show.sgml,v 1.32 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -127,22 +127,6 @@ SHOW ALL
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>ERROR: Option '<replaceable>name</replaceable>' is not recognized</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if <replaceable>name</replaceable> does not
-      stand for a known parameter.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
index 26963e804899adff85c4ca573470e01e6b35bc51..60089d71ee98123b07437f4acacc1d324e378370 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/start_transaction.sgml,v 1.6 2003/08/31 17:32:24 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/start_transaction.sgml,v 1.7 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -47,31 +47,6 @@ START TRANSACTION [ ISOLATION LEVEL { READ COMMITTED | SERIALIZABLE } ] [ READ W
   </para>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>START TRANSACTION</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if successful.
-     </para>
-    </listitem>
-   </varlistentry>
-
-   <varlistentry>
-    <term><computeroutput>WARNING:  BEGIN: already a transaction in progress</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if there was already a transaction in progress
-      when the command was issued.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Compatibility</title>
 
@@ -81,6 +56,17 @@ START TRANSACTION [ ISOLATION LEVEL { READ COMMITTED | SERIALIZABLE } ] [ READ W
    endterm="sql-set-transaction-title">.
   </para>
  </refsect1>
+
+ <refsect1>
+  <title>See Also</title>
+
+  <simplelist type="inline">
+   <member><xref linkend="sql-begin" endterm="sql-begin-title"></member>
+   <member><xref linkend="sql-commit" endterm="sql-commit-title"></member>
+   <member><xref linkend="sql-rollback" endterm="sql-rollback-title"></member>
+   <member><xref linkend="sql-set-transaction" endterm="sql-set-transaction-title"></member>
+  </simplelist>
+ </refsect1>
 </refentry>
 
 <!-- Keep this comment at the end of the file
index d0e08e74822ac67605c45ef03d85ebe9b0694feb..3fca86910359593a32c3ee86ac2399757c7b96c5 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/truncate.sgml,v 1.11 2003/08/31 17:32:24 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/truncate.sgml,v 1.12 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -49,21 +49,6 @@ TRUNCATE [ TABLE ] <replaceable class="PARAMETER">name</replaceable>
    </varlistentry>
   </variablelist>
  </refsect1>
-  
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>TRUNCATE TABLE</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned if the table was successfully truncated.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
 
  <refsect1>
   <title>Examples</title>
index 385f6db2e3a12803bdfc66158d4043ac7ec4d818..175bcf045c1725a4c0e461f9f4c986225da745b7 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/unlisten.sgml,v 1.22 2003/08/31 17:32:24 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/unlisten.sgml,v 1.23 2003/09/09 18:28:53 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -70,30 +70,16 @@ UNLISTEN { <replaceable class="PARAMETER">name</replaceable> | * }
   </variablelist>
  </refsect1>
 
- <refsect1>
-  <title>Diagnostics</title>
-
-  <variablelist>
-   <varlistentry>
-    <term><computeroutput>UNLISTEN</computeroutput></term>
-    <listitem>
-     <para>
-      Message returned when the command has executed.
-     </para>
-    </listitem>
-   </varlistentry>
-  </variablelist>
- </refsect1>
-
  <refsect1>
   <title>Notes</title>
 
   <para>
-   You unlisten something you were not listening for; no warning or error will appear.
+   You may unlisten something you were not listening for; no warning or error
+   will appear.
   </para>
 
   <para>
-   At the end of each session, <command>UNLISTEN *</command> ist
+   At the end of each session, <command>UNLISTEN *</command> is
    automatically executed.
   </para>
  </refsect1>