diff --git a/doc/src/sgml/ref/abort.sgml b/doc/src/sgml/ref/abort.sgml
index 017d4d7036e..49cd37d277f 100644
--- a/doc/src/sgml/ref/abort.sgml
+++ b/doc/src/sgml/ref/abort.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
ABORT
- Aborts the current transaction
+ abort the current transaction
diff --git a/doc/src/sgml/ref/alter_group.sgml b/doc/src/sgml/ref/alter_group.sgml
index f7e6a66334d..415049445fd 100644
--- a/doc/src/sgml/ref/alter_group.sgml
+++ b/doc/src/sgml/ref/alter_group.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
ALTER GROUP
- Add users to a group; remove users from a group
+ add users to a group or remove users from a group
diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml
index 87252f74676..f5f22cb85dd 100644
--- a/doc/src/sgml/ref/alter_table.sgml
+++ b/doc/src/sgml/ref/alter_table.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
ALTER TABLE
- Modifies table properties
+ change the definition of a table
diff --git a/doc/src/sgml/ref/alter_user.sgml b/doc/src/sgml/ref/alter_user.sgml
index 3a502197ab2..e8258f762d8 100644
--- a/doc/src/sgml/ref/alter_user.sgml
+++ b/doc/src/sgml/ref/alter_user.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
ALTER USER
- Modifies user account information
+ change a database user account
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 57d3213d614..98f38aefb90 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
ANALYZE
- Collect statistics about a Postgres database
+ collect statistics about a database
diff --git a/doc/src/sgml/ref/begin.sgml b/doc/src/sgml/ref/begin.sgml
index cc97c728d3d..b2b9a88d6b1 100644
--- a/doc/src/sgml/ref/begin.sgml
+++ b/doc/src/sgml/ref/begin.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
BEGIN
- Begins a transaction in chained mode
+ start a transaction block
diff --git a/doc/src/sgml/ref/checkpoint.sgml b/doc/src/sgml/ref/checkpoint.sgml
index 5336c3f5529..dd15c21038e 100644
--- a/doc/src/sgml/ref/checkpoint.sgml
+++ b/doc/src/sgml/ref/checkpoint.sgml
@@ -1,4 +1,4 @@
-
+
@@ -12,7 +12,7 @@
CHECKPOINT
- Force transaction log checkpoint
+ force a transaction log checkpoint
diff --git a/doc/src/sgml/ref/close.sgml b/doc/src/sgml/ref/close.sgml
index 1a470c00b89..e56e8031304 100644
--- a/doc/src/sgml/ref/close.sgml
+++ b/doc/src/sgml/ref/close.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
CLOSE
- Close a cursor
+ close a cursor
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index c6eda9d5e3a..de6dfa3af61 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
CLUSTER
- Gives storage clustering advice to the server
+ cluster a table according to an index
diff --git a/doc/src/sgml/ref/comment.sgml b/doc/src/sgml/ref/comment.sgml
index c31939bb73c..0ccff62a30c 100644
--- a/doc/src/sgml/ref/comment.sgml
+++ b/doc/src/sgml/ref/comment.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
COMMENT
- Add comment to an object
+ define or change the comment of an object
diff --git a/doc/src/sgml/ref/commit.sgml b/doc/src/sgml/ref/commit.sgml
index 97dd13e972a..301fcd0101e 100644
--- a/doc/src/sgml/ref/commit.sgml
+++ b/doc/src/sgml/ref/commit.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
COMMIT
- Commits the current transaction
+ commit the current transaction
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index d433fbb01c7..7727f06cbd5 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -1,5 +1,5 @@
@@ -13,7 +13,7 @@ Postgres documentation
COPY
- Copies data between files and tables
+ copy data between files and tables
diff --git a/doc/src/sgml/ref/create_aggregate.sgml b/doc/src/sgml/ref/create_aggregate.sgml
index 07546a0732b..4ef5f983704 100644
--- a/doc/src/sgml/ref/create_aggregate.sgml
+++ b/doc/src/sgml/ref/create_aggregate.sgml
@@ -1,5 +1,5 @@
@@ -16,7 +16,7 @@ Postgres documentation
CREATE AGGREGATE
- Defines a new aggregate function
+ define a new aggregate function
diff --git a/doc/src/sgml/ref/create_constraint.sgml b/doc/src/sgml/ref/create_constraint.sgml
index c8759c8f184..3ffefe4cbd6 100644
--- a/doc/src/sgml/ref/create_constraint.sgml
+++ b/doc/src/sgml/ref/create_constraint.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
CREATE CONSTRAINT TRIGGER
- Create a trigger to support a constraint
+ define a new constraint trigger
diff --git a/doc/src/sgml/ref/create_database.sgml b/doc/src/sgml/ref/create_database.sgml
index 20477ac191c..4b5c57bbbb4 100644
--- a/doc/src/sgml/ref/create_database.sgml
+++ b/doc/src/sgml/ref/create_database.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
CREATE DATABASE
- Creates a new database
+ create a new database
diff --git a/doc/src/sgml/ref/create_function.sgml b/doc/src/sgml/ref/create_function.sgml
index aa6552dca7d..a24a4252cf0 100644
--- a/doc/src/sgml/ref/create_function.sgml
+++ b/doc/src/sgml/ref/create_function.sgml
@@ -1,5 +1,5 @@
@@ -10,7 +10,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/ref/create_function.sgml,v 1.25 2001/08/13
CREATE FUNCTION
- Defines a new function
+ define a new function
diff --git a/doc/src/sgml/ref/create_group.sgml b/doc/src/sgml/ref/create_group.sgml
index 97c5700b62a..f88caa6405b 100644
--- a/doc/src/sgml/ref/create_group.sgml
+++ b/doc/src/sgml/ref/create_group.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
CREATE GROUP
- Creates a new group
+ define a new user group
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index f2b042d7711..b6c7b268db5 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
CREATE INDEX
- Constructs a secondary index
+ define a new index
diff --git a/doc/src/sgml/ref/create_language.sgml b/doc/src/sgml/ref/create_language.sgml
index 73dd7773e81..bcce7d6c612 100644
--- a/doc/src/sgml/ref/create_language.sgml
+++ b/doc/src/sgml/ref/create_language.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
CREATE LANGUAGE
- Defines a new language for functions
+ define a new procedural language
diff --git a/doc/src/sgml/ref/create_operator.sgml b/doc/src/sgml/ref/create_operator.sgml
index a4daba49cbd..e1ae4034d6e 100644
--- a/doc/src/sgml/ref/create_operator.sgml
+++ b/doc/src/sgml/ref/create_operator.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
CREATE OPERATOR
- Defines a new user operator
+ define a new operator
diff --git a/doc/src/sgml/ref/create_rule.sgml b/doc/src/sgml/ref/create_rule.sgml
index a2388b09d11..4d682c8899a 100644
--- a/doc/src/sgml/ref/create_rule.sgml
+++ b/doc/src/sgml/ref/create_rule.sgml
@@ -1,5 +1,5 @@
@@ -13,7 +13,7 @@ Postgres documentation
CREATE RULE
- Defines a new rule
+ define a new rewrite rule
diff --git a/doc/src/sgml/ref/create_sequence.sgml b/doc/src/sgml/ref/create_sequence.sgml
index 4f7b8b296d7..ec44b35f1ab 100644
--- a/doc/src/sgml/ref/create_sequence.sgml
+++ b/doc/src/sgml/ref/create_sequence.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
CREATE SEQUENCE
- Creates a new sequence number generator
+ define a new sequence
diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml
index b7ac1b29552..759962be0e4 100644
--- a/doc/src/sgml/ref/create_table.sgml
+++ b/doc/src/sgml/ref/create_table.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
CREATE TABLE
- Creates a new table
+ define a new table
diff --git a/doc/src/sgml/ref/create_table_as.sgml b/doc/src/sgml/ref/create_table_as.sgml
index 47c5829f153..a0144ab6586 100644
--- a/doc/src/sgml/ref/create_table_as.sgml
+++ b/doc/src/sgml/ref/create_table_as.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
CREATE TABLE AS
- Creates a new table from the results of a SELECT
+ create a new table from the results of a query
diff --git a/doc/src/sgml/ref/create_trigger.sgml b/doc/src/sgml/ref/create_trigger.sgml
index 71f26d1c5fa..97ee0a7a299 100644
--- a/doc/src/sgml/ref/create_trigger.sgml
+++ b/doc/src/sgml/ref/create_trigger.sgml
@@ -1,5 +1,5 @@
@@ -13,7 +13,7 @@ Postgres documentation
CREATE TRIGGER
- Creates a new trigger
+ define a new trigger
diff --git a/doc/src/sgml/ref/create_type.sgml b/doc/src/sgml/ref/create_type.sgml
index 1693063ad38..750fdcfe899 100644
--- a/doc/src/sgml/ref/create_type.sgml
+++ b/doc/src/sgml/ref/create_type.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
CREATE TYPE
- Defines a new base data type
+ define a new data type
diff --git a/doc/src/sgml/ref/create_user.sgml b/doc/src/sgml/ref/create_user.sgml
index f72b20f59d7..0abb976179c 100644
--- a/doc/src/sgml/ref/create_user.sgml
+++ b/doc/src/sgml/ref/create_user.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
CREATE USER
- Creates a new database user
+ define a new database user account
diff --git a/doc/src/sgml/ref/create_view.sgml b/doc/src/sgml/ref/create_view.sgml
index f13dee1dd42..bb383e41e5e 100644
--- a/doc/src/sgml/ref/create_view.sgml
+++ b/doc/src/sgml/ref/create_view.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
CREATE VIEW
- Constructs a virtual table
+ define a new view
diff --git a/doc/src/sgml/ref/createdb.sgml b/doc/src/sgml/ref/createdb.sgml
index 29270097083..cd1426dea90 100644
--- a/doc/src/sgml/ref/createdb.sgml
+++ b/doc/src/sgml/ref/createdb.sgml
@@ -1,5 +1,5 @@
@@ -16,7 +16,7 @@ Postgres documentation
createdb
- Create a new Postgres database
+ create a new PostgreSQL database
diff --git a/doc/src/sgml/ref/createlang.sgml b/doc/src/sgml/ref/createlang.sgml
index b50873cf7a5..d38619e7019 100644
--- a/doc/src/sgml/ref/createlang.sgml
+++ b/doc/src/sgml/ref/createlang.sgml
@@ -1,5 +1,5 @@
@@ -16,7 +16,7 @@ Postgres documentation
createlang
- Add a new programming language to a Postgres database
+ define a new PostgreSQL procedural language
diff --git a/doc/src/sgml/ref/createuser.sgml b/doc/src/sgml/ref/createuser.sgml
index 157abdd7884..729945de01e 100644
--- a/doc/src/sgml/ref/createuser.sgml
+++ b/doc/src/sgml/ref/createuser.sgml
@@ -1,5 +1,5 @@
@@ -16,7 +16,7 @@ Postgres documentation
createuser
- Create a new Postgres user
+ define a new PostgreSQL user account
diff --git a/doc/src/sgml/ref/declare.sgml b/doc/src/sgml/ref/declare.sgml
index e5b1a6d9500..6e00edb4b8d 100644
--- a/doc/src/sgml/ref/declare.sgml
+++ b/doc/src/sgml/ref/declare.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
DECLARE
- Defines a cursor for table access
+ define a cursor
diff --git a/doc/src/sgml/ref/delete.sgml b/doc/src/sgml/ref/delete.sgml
index 261ac327080..3597db386b8 100644
--- a/doc/src/sgml/ref/delete.sgml
+++ b/doc/src/sgml/ref/delete.sgml
@@ -1,5 +1,5 @@
@@ -13,7 +13,7 @@ Postgres documentation
DELETE
- Removes rows from a table
+ delete rows of a table
diff --git a/doc/src/sgml/ref/drop_aggregate.sgml b/doc/src/sgml/ref/drop_aggregate.sgml
index 316f3799721..6b67a84fb79 100644
--- a/doc/src/sgml/ref/drop_aggregate.sgml
+++ b/doc/src/sgml/ref/drop_aggregate.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
DROP AGGREGATE
- Removes the definition of an aggregate function
+ remove a user-defined aggregate function
diff --git a/doc/src/sgml/ref/drop_database.sgml b/doc/src/sgml/ref/drop_database.sgml
index 7f0d79f5769..438603229a7 100644
--- a/doc/src/sgml/ref/drop_database.sgml
+++ b/doc/src/sgml/ref/drop_database.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
DROP DATABASE
- Removes an existing database
+ remove a database
diff --git a/doc/src/sgml/ref/drop_function.sgml b/doc/src/sgml/ref/drop_function.sgml
index 2799c5872ef..3e7883e5bf0 100644
--- a/doc/src/sgml/ref/drop_function.sgml
+++ b/doc/src/sgml/ref/drop_function.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
DROP FUNCTION
- Removes a user-defined C function
+ remove a user-defined function
diff --git a/doc/src/sgml/ref/drop_group.sgml b/doc/src/sgml/ref/drop_group.sgml
index 0d7db1ef098..e39ff0e1870 100644
--- a/doc/src/sgml/ref/drop_group.sgml
+++ b/doc/src/sgml/ref/drop_group.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
DROP GROUP
- Removes a group
+ remove a user group
diff --git a/doc/src/sgml/ref/drop_index.sgml b/doc/src/sgml/ref/drop_index.sgml
index ad9edd92f11..0fdce31e0fd 100644
--- a/doc/src/sgml/ref/drop_index.sgml
+++ b/doc/src/sgml/ref/drop_index.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
DROP INDEX
- Removes an index from the database
+ remove an index
diff --git a/doc/src/sgml/ref/drop_language.sgml b/doc/src/sgml/ref/drop_language.sgml
index 45331c6ae1f..5f4b218bfa9 100644
--- a/doc/src/sgml/ref/drop_language.sgml
+++ b/doc/src/sgml/ref/drop_language.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
DROP LANGUAGE
- Removes a user-defined procedural language
+ remove a user-defined procedural language
diff --git a/doc/src/sgml/ref/drop_operator.sgml b/doc/src/sgml/ref/drop_operator.sgml
index 375cd0e5967..23e39f434b3 100644
--- a/doc/src/sgml/ref/drop_operator.sgml
+++ b/doc/src/sgml/ref/drop_operator.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
DROP OPERATOR
- Removes an operator from the database
+ remove a user-defined operator
diff --git a/doc/src/sgml/ref/drop_rule.sgml b/doc/src/sgml/ref/drop_rule.sgml
index 85817a612e5..6063c114abc 100644
--- a/doc/src/sgml/ref/drop_rule.sgml
+++ b/doc/src/sgml/ref/drop_rule.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
DROP RULE
- Removes rules from the database
+ remove a rewrite rule
diff --git a/doc/src/sgml/ref/drop_sequence.sgml b/doc/src/sgml/ref/drop_sequence.sgml
index d38866e6e3a..5782fdc6a26 100644
--- a/doc/src/sgml/ref/drop_sequence.sgml
+++ b/doc/src/sgml/ref/drop_sequence.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
DROP SEQUENCE
- Removes sequences from a database
+ remove a sequence
diff --git a/doc/src/sgml/ref/drop_table.sgml b/doc/src/sgml/ref/drop_table.sgml
index f90faee34e2..0899c5a7d40 100644
--- a/doc/src/sgml/ref/drop_table.sgml
+++ b/doc/src/sgml/ref/drop_table.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
DROP TABLE
- Removes tables from a database
+ remove a table
diff --git a/doc/src/sgml/ref/drop_trigger.sgml b/doc/src/sgml/ref/drop_trigger.sgml
index beb5f202638..81a9219f100 100644
--- a/doc/src/sgml/ref/drop_trigger.sgml
+++ b/doc/src/sgml/ref/drop_trigger.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
DROP TRIGGER
- Removes the definition of a trigger
+ remove a trigger
diff --git a/doc/src/sgml/ref/drop_type.sgml b/doc/src/sgml/ref/drop_type.sgml
index 59ab7911922..8e347906b4b 100644
--- a/doc/src/sgml/ref/drop_type.sgml
+++ b/doc/src/sgml/ref/drop_type.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
DROP TYPE
- Removes user-defined types from the system catalogs
+ remove a user-defined data type
diff --git a/doc/src/sgml/ref/drop_user.sgml b/doc/src/sgml/ref/drop_user.sgml
index e5502d9eaed..9c7cc4c58ca 100644
--- a/doc/src/sgml/ref/drop_user.sgml
+++ b/doc/src/sgml/ref/drop_user.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
DROP USER
- Removes a user
+ remove a database user account
diff --git a/doc/src/sgml/ref/drop_view.sgml b/doc/src/sgml/ref/drop_view.sgml
index c31ea84c818..918da7c5e00 100644
--- a/doc/src/sgml/ref/drop_view.sgml
+++ b/doc/src/sgml/ref/drop_view.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
DROP VIEW
- Removes views from the database
+ remove a view
diff --git a/doc/src/sgml/ref/dropdb.sgml b/doc/src/sgml/ref/dropdb.sgml
index 6b066aee195..10fd58321e2 100644
--- a/doc/src/sgml/ref/dropdb.sgml
+++ b/doc/src/sgml/ref/dropdb.sgml
@@ -1,5 +1,5 @@
@@ -16,7 +16,7 @@ Postgres documentation
dropdb
- Removes a Postgres database
+ remove a PostgreSQL database
diff --git a/doc/src/sgml/ref/droplang.sgml b/doc/src/sgml/ref/droplang.sgml
index 6ffbd200e29..1e519885775 100644
--- a/doc/src/sgml/ref/droplang.sgml
+++ b/doc/src/sgml/ref/droplang.sgml
@@ -1,5 +1,5 @@
@@ -16,7 +16,7 @@ Postgres documentation
droplang
- Removes a programming language from a Postgres database
+ remove a PostgreSQL procedural language
diff --git a/doc/src/sgml/ref/dropuser.sgml b/doc/src/sgml/ref/dropuser.sgml
index c03f5fcbfe0..73c8524999f 100644
--- a/doc/src/sgml/ref/dropuser.sgml
+++ b/doc/src/sgml/ref/dropuser.sgml
@@ -1,5 +1,5 @@
@@ -16,7 +16,7 @@ Postgres documentation
dropuser
- Removes a Postgres user
+ remove a PostgreSQL user account
diff --git a/doc/src/sgml/ref/ecpg-ref.sgml b/doc/src/sgml/ref/ecpg-ref.sgml
index 83128c23648..0789c9fa3a7 100644
--- a/doc/src/sgml/ref/ecpg-ref.sgml
+++ b/doc/src/sgml/ref/ecpg-ref.sgml
@@ -1,5 +1,5 @@
@@ -16,7 +16,7 @@ Postgres documentation
ecpg
- Embedded SQL C preprocessor
+ embedded SQL C preprocessor
diff --git a/doc/src/sgml/ref/end.sgml b/doc/src/sgml/ref/end.sgml
index 1df5ea2904a..9f3bd5db294 100644
--- a/doc/src/sgml/ref/end.sgml
+++ b/doc/src/sgml/ref/end.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
END
- Commits the current transaction
+ commit the current transaction
diff --git a/doc/src/sgml/ref/explain.sgml b/doc/src/sgml/ref/explain.sgml
index 1786cd9a2e7..7bccea72ad7 100644
--- a/doc/src/sgml/ref/explain.sgml
+++ b/doc/src/sgml/ref/explain.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
EXPLAIN
- Shows statement execution plan
+ show the execution plan of a statement
diff --git a/doc/src/sgml/ref/fetch.sgml b/doc/src/sgml/ref/fetch.sgml
index bad0c4cdc03..ee042438675 100644
--- a/doc/src/sgml/ref/fetch.sgml
+++ b/doc/src/sgml/ref/fetch.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
FETCH
- Gets rows using a cursor
+ retrieve rows from a table using a cursor
diff --git a/doc/src/sgml/ref/grant.sgml b/doc/src/sgml/ref/grant.sgml
index 98f221cf192..c3abce3b286 100644
--- a/doc/src/sgml/ref/grant.sgml
+++ b/doc/src/sgml/ref/grant.sgml
@@ -1,5 +1,5 @@
@@ -11,7 +11,7 @@ Postgres documentation
GRANT
- Grants access privileges to a user, a group, or all users
+ define access privileges
diff --git a/doc/src/sgml/ref/initdb.sgml b/doc/src/sgml/ref/initdb.sgml
index 954a48c16ac..9e94eccf76f 100644
--- a/doc/src/sgml/ref/initdb.sgml
+++ b/doc/src/sgml/ref/initdb.sgml
@@ -1,5 +1,5 @@
@@ -16,7 +16,7 @@ Postgres documentation
initdb
- Create a new Postgres database cluster
+ create a new PostgreSQL database cluster
diff --git a/doc/src/sgml/ref/initlocation.sgml b/doc/src/sgml/ref/initlocation.sgml
index 732a2d6ef74..a7abfcdb66c 100644
--- a/doc/src/sgml/ref/initlocation.sgml
+++ b/doc/src/sgml/ref/initlocation.sgml
@@ -1,5 +1,5 @@
@@ -16,7 +16,7 @@ Postgres documentation
initlocation
- Create a secondary Postgres database storage area
+ create a secondary PostgreSQL database storage area
diff --git a/doc/src/sgml/ref/insert.sgml b/doc/src/sgml/ref/insert.sgml
index f6ab93f9f59..aad43dd0107 100644
--- a/doc/src/sgml/ref/insert.sgml
+++ b/doc/src/sgml/ref/insert.sgml
@@ -1,5 +1,5 @@
@@ -13,7 +13,7 @@ Postgres documentation
INSERT
- Inserts new rows into a table
+ create new rows in a table
diff --git a/doc/src/sgml/ref/ipcclean.sgml b/doc/src/sgml/ref/ipcclean.sgml
index 006bf50ac03..cb468f8c615 100644
--- a/doc/src/sgml/ref/ipcclean.sgml
+++ b/doc/src/sgml/ref/ipcclean.sgml
@@ -1,5 +1,5 @@
@@ -16,7 +16,7 @@ Postgres documentation
ipcclean
- Clean up shared memory and semaphores from aborted backends
+ remove shared memory and semaphores from an aborted PostgreSQL server
diff --git a/doc/src/sgml/ref/listen.sgml b/doc/src/sgml/ref/listen.sgml
index c3110686ad3..4497f1d67a5 100644
--- a/doc/src/sgml/ref/listen.sgml
+++ b/doc/src/sgml/ref/listen.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
LISTEN
- Listen for a response on a notify condition
+ listen for a notification
diff --git a/doc/src/sgml/ref/load.sgml b/doc/src/sgml/ref/load.sgml
index 13008586c35..3c71950f55c 100644
--- a/doc/src/sgml/ref/load.sgml
+++ b/doc/src/sgml/ref/load.sgml
@@ -1,5 +1,5 @@
@@ -10,7 +10,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/ref/load.sgml,v 1.8 2001/05/19 09:01:10 pet
LOAD
- Loads a shared object file
+ load or reload a shared object file
diff --git a/doc/src/sgml/ref/lock.sgml b/doc/src/sgml/ref/lock.sgml
index b66f42e7ebc..c8afdd26433 100644
--- a/doc/src/sgml/ref/lock.sgml
+++ b/doc/src/sgml/ref/lock.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
LOCK
- Explicitly lock a table / tables inside a transaction
+ explicitly lock a table
diff --git a/doc/src/sgml/ref/move.sgml b/doc/src/sgml/ref/move.sgml
index a97267ec987..23dec1f6775 100644
--- a/doc/src/sgml/ref/move.sgml
+++ b/doc/src/sgml/ref/move.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
MOVE
- Moves cursor position
+ position a cursor on a specified row of a table
diff --git a/doc/src/sgml/ref/notify.sgml b/doc/src/sgml/ref/notify.sgml
index 0e5748a736f..02a0e4c3e1d 100644
--- a/doc/src/sgml/ref/notify.sgml
+++ b/doc/src/sgml/ref/notify.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
NOTIFY
- Signals all frontends and backends listening on a notify condition
+ generate a notification
diff --git a/doc/src/sgml/ref/pg_config-ref.sgml b/doc/src/sgml/ref/pg_config-ref.sgml
index 89fc04fbf7e..a61539d1626 100644
--- a/doc/src/sgml/ref/pg_config-ref.sgml
+++ b/doc/src/sgml/ref/pg_config-ref.sgml
@@ -1,4 +1,4 @@
-
+
@@ -13,7 +13,7 @@
pg_config
- Provides information about the installed version of PostgreSQL>
+ retrieve information about the installed version of PostgreSQL>
diff --git a/doc/src/sgml/ref/pg_ctl-ref.sgml b/doc/src/sgml/ref/pg_ctl-ref.sgml
index 0b9d3f98469..84022f9f695 100644
--- a/doc/src/sgml/ref/pg_ctl-ref.sgml
+++ b/doc/src/sgml/ref/pg_ctl-ref.sgml
@@ -1,5 +1,5 @@
@@ -16,7 +16,7 @@ Postgres documentation
pg_ctl
- Starts, stops, or restarts postmaster
+ start, stop, or restart a PostgreSQL server
diff --git a/doc/src/sgml/ref/pg_dump.sgml b/doc/src/sgml/ref/pg_dump.sgml
index 1da554aa70e..9712ed3aa74 100644
--- a/doc/src/sgml/ref/pg_dump.sgml
+++ b/doc/src/sgml/ref/pg_dump.sgml
@@ -1,5 +1,5 @@
@@ -20,7 +20,7 @@ Postgres documentation
pg_dump
- Extract a Postgres database into a script file or other archive file
+ extract a PostgreSQL database into a script file or other archive file
diff --git a/doc/src/sgml/ref/pg_dumpall.sgml b/doc/src/sgml/ref/pg_dumpall.sgml
index bf35106c67a..aff2ac55983 100644
--- a/doc/src/sgml/ref/pg_dumpall.sgml
+++ b/doc/src/sgml/ref/pg_dumpall.sgml
@@ -1,5 +1,5 @@
@@ -16,7 +16,7 @@ Postgres documentation
pg_dumpall
- Extract all databases into a script file
+ extract all PostgreSQL databases into a script file
diff --git a/doc/src/sgml/ref/pg_passwd.sgml b/doc/src/sgml/ref/pg_passwd.sgml
index 8e244c237fd..66d666cc68e 100644
--- a/doc/src/sgml/ref/pg_passwd.sgml
+++ b/doc/src/sgml/ref/pg_passwd.sgml
@@ -1,5 +1,5 @@
@@ -16,7 +16,7 @@ Postgres documentation
pg_passwd
- Manipulate a secondary password file
+ change a secondary password file
diff --git a/doc/src/sgml/ref/pg_restore.sgml b/doc/src/sgml/ref/pg_restore.sgml
index 22f264ceac1..cacb9f9ae86 100644
--- a/doc/src/sgml/ref/pg_restore.sgml
+++ b/doc/src/sgml/ref/pg_restore.sgml
@@ -1,4 +1,4 @@
-
+
@@ -17,8 +17,7 @@
pg_restore
- Restore a Postgres database from an archive file created by
-pg_dump
+ restore a PostgreSQL database from an archive file created by pg_dump
diff --git a/doc/src/sgml/ref/pgaccess-ref.sgml b/doc/src/sgml/ref/pgaccess-ref.sgml
index d2aa9782d0c..c4bcdb7bbab 100644
--- a/doc/src/sgml/ref/pgaccess-ref.sgml
+++ b/doc/src/sgml/ref/pgaccess-ref.sgml
@@ -1,5 +1,5 @@
@@ -16,7 +16,7 @@ Postgres documentation
pgaccess
- PostgreSQL graphical client
+ a graphical PostgreSQL client application
diff --git a/doc/src/sgml/ref/postgres-ref.sgml b/doc/src/sgml/ref/postgres-ref.sgml
index 83236297bf9..fda88ae1d48 100644
--- a/doc/src/sgml/ref/postgres-ref.sgml
+++ b/doc/src/sgml/ref/postgres-ref.sgml
@@ -1,5 +1,5 @@
@@ -16,7 +16,7 @@ Postgres documentation
postgres
- Run a PostgreSQL single-user backend
+ run a PostgreSQL server in single-user mode
diff --git a/doc/src/sgml/ref/postmaster.sgml b/doc/src/sgml/ref/postmaster.sgml
index 2d29cb0832b..aeb11a6c6d6 100644
--- a/doc/src/sgml/ref/postmaster.sgml
+++ b/doc/src/sgml/ref/postmaster.sgml
@@ -1,5 +1,5 @@
@@ -16,7 +16,7 @@ Postgres documentation
postmaster
- PostgreSQL multi-user database server
+ PostgreSQL multiuser database server
@@ -45,7 +45,7 @@ Postgres documentation
postmaster is the
- PostgreSQL multi-user database server.
+ PostgreSQL multiuser database server.
In order for a client application to access a database it connects
(over a network or locally) to a running
postmaster. The
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml
index ef14a9fdd42..a495160eeed 100644
--- a/doc/src/sgml/ref/psql-ref.sgml
+++ b/doc/src/sgml/ref/psql-ref.sgml
@@ -1,5 +1,5 @@
@@ -17,7 +17,7 @@ Postgres documentation
psql
- Postgres interactive terminal
+ PostgreSQL interactive terminal
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index 6e5722ae85f..bcff1072a58 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
REINDEX
- Recover corrupted system indexes under stand-alone Postgres
+ recover a corrupted system index
diff --git a/doc/src/sgml/ref/reset.sgml b/doc/src/sgml/ref/reset.sgml
index 85194663eb2..59228cc819e 100644
--- a/doc/src/sgml/ref/reset.sgml
+++ b/doc/src/sgml/ref/reset.sgml
@@ -1,5 +1,5 @@
@@ -10,7 +10,7 @@ Postgres documentation
RESET
- Restores run-time parameters to default values
+ restore the value of a run-time parameter to a default value
diff --git a/doc/src/sgml/ref/revoke.sgml b/doc/src/sgml/ref/revoke.sgml
index f77ed62ea6b..e1729b3d72a 100644
--- a/doc/src/sgml/ref/revoke.sgml
+++ b/doc/src/sgml/ref/revoke.sgml
@@ -1,5 +1,5 @@
@@ -11,7 +11,7 @@ Postgres documentation
REVOKE
- Revokes access privilege from a user, a group, or all users.
+ remove access privileges
diff --git a/doc/src/sgml/ref/rollback.sgml b/doc/src/sgml/ref/rollback.sgml
index 25daecb9f52..527ea847493 100644
--- a/doc/src/sgml/ref/rollback.sgml
+++ b/doc/src/sgml/ref/rollback.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
ROLLBACK
- Aborts the current transaction
+ abort the current transaction
diff --git a/doc/src/sgml/ref/select.sgml b/doc/src/sgml/ref/select.sgml
index b6bbd7e5d1e..f24dbc55f46 100644
--- a/doc/src/sgml/ref/select.sgml
+++ b/doc/src/sgml/ref/select.sgml
@@ -1,5 +1,5 @@
@@ -13,7 +13,7 @@ Postgres documentation
SELECT
- Retrieves rows from a table or view
+ retrieve rows from a table or view
diff --git a/doc/src/sgml/ref/select_into.sgml b/doc/src/sgml/ref/select_into.sgml
index 50d2780a6dc..05b1e1fc79b 100644
--- a/doc/src/sgml/ref/select_into.sgml
+++ b/doc/src/sgml/ref/select_into.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
SELECT INTO
- Creates a new table from the results of a SELECT
+ create a new table from the results of a query
diff --git a/doc/src/sgml/ref/set.sgml b/doc/src/sgml/ref/set.sgml
index 417eb9be3c7..2b3e41a1c94 100644
--- a/doc/src/sgml/ref/set.sgml
+++ b/doc/src/sgml/ref/set.sgml
@@ -1,5 +1,5 @@
@@ -10,7 +10,7 @@ Postgres documentation
SET
- Set run-time parameters
+ change a run-time parameter
diff --git a/doc/src/sgml/ref/set_constraints.sgml b/doc/src/sgml/ref/set_constraints.sgml
index af8bfcb60ec..be0a9eb8fbb 100644
--- a/doc/src/sgml/ref/set_constraints.sgml
+++ b/doc/src/sgml/ref/set_constraints.sgml
@@ -1,4 +1,4 @@
-
+
SET CONSTRAINTS
@@ -6,7 +6,7 @@
SET CONSTRAINTS
- Set the constraint mode of the current SQL-transaction
+ set the constraint mode of the current transaction
diff --git a/doc/src/sgml/ref/set_session_auth.sgml b/doc/src/sgml/ref/set_session_auth.sgml
index ba3ec6fb542..faae220e1d6 100644
--- a/doc/src/sgml/ref/set_session_auth.sgml
+++ b/doc/src/sgml/ref/set_session_auth.sgml
@@ -1,4 +1,4 @@
-
+
2001-04-21
@@ -11,8 +11,8 @@
SET SESSION AUTHORIZATION
- Set the session user identifier and the current user identifier
- of the current SQL-session context
+ set the session user identifier and the current user identifier
+ of the current session
diff --git a/doc/src/sgml/ref/set_transaction.sgml b/doc/src/sgml/ref/set_transaction.sgml
index aa97b2f7d43..3bb623c3a0c 100644
--- a/doc/src/sgml/ref/set_transaction.sgml
+++ b/doc/src/sgml/ref/set_transaction.sgml
@@ -1,4 +1,4 @@
-
+
2000-11-24
@@ -11,7 +11,7 @@
SET TRANSACTION
- Set the characteristics of the current SQL-transaction
+ set the characteristics of the current transaction
diff --git a/doc/src/sgml/ref/show.sgml b/doc/src/sgml/ref/show.sgml
index 3674a97c5ba..933b6a13abc 100644
--- a/doc/src/sgml/ref/show.sgml
+++ b/doc/src/sgml/ref/show.sgml
@@ -1,5 +1,5 @@
@@ -10,7 +10,7 @@ Postgres documentation
SHOW
- Shows run-time parameters
+ show the value of a run-time parameter
diff --git a/doc/src/sgml/ref/truncate.sgml b/doc/src/sgml/ref/truncate.sgml
index 0459c929218..861c93b1161 100644
--- a/doc/src/sgml/ref/truncate.sgml
+++ b/doc/src/sgml/ref/truncate.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
TRUNCATE
- Empty a table
+ empty a table
diff --git a/doc/src/sgml/ref/unlisten.sgml b/doc/src/sgml/ref/unlisten.sgml
index 4f4c1cf2b51..dd7680404b7 100644
--- a/doc/src/sgml/ref/unlisten.sgml
+++ b/doc/src/sgml/ref/unlisten.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
UNLISTEN
- Stop listening for notification
+ stop listening for a notification
diff --git a/doc/src/sgml/ref/update.sgml b/doc/src/sgml/ref/update.sgml
index f47b2663ac3..f2a20433731 100644
--- a/doc/src/sgml/ref/update.sgml
+++ b/doc/src/sgml/ref/update.sgml
@@ -1,5 +1,5 @@
@@ -13,7 +13,7 @@ Postgres documentation
UPDATE
- Replaces values of columns in a table
+ update rows of a table
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index 62e47a7086d..b1483291915 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -1,5 +1,5 @@
@@ -15,7 +15,7 @@ Postgres documentation
VACUUM
- Clean and optionally analyze a Postgres database
+ garbage-collect and optionally analyze a database
diff --git a/doc/src/sgml/ref/vacuumdb.sgml b/doc/src/sgml/ref/vacuumdb.sgml
index 141d2dcd57b..a4d1a4c26e4 100644
--- a/doc/src/sgml/ref/vacuumdb.sgml
+++ b/doc/src/sgml/ref/vacuumdb.sgml
@@ -1,5 +1,5 @@
@@ -16,7 +16,7 @@ Postgres documentation
vacuumdb
- Clean and analyze a Postgres database
+ garbage-collect and analyze a PostgreSQL database
diff --git a/doc/src/sgml/reference.sgml b/doc/src/sgml/reference.sgml
index 57dcc7ed280..e4c85ed699f 100644
--- a/doc/src/sgml/reference.sgml
+++ b/doc/src/sgml/reference.sgml
@@ -1,5 +1,5 @@
@@ -12,13 +12,36 @@ PostgreSQL Reference Manual
&legal;
+
+ Preface
+
+
+ The entries in this Reference Manual are
+ meant to provide in reasonable length an authorative, complete, and
+ formal summary about the respective subjects. More information
+ about the use of PostgreSQL, in
+ narrative, tutorial, or example form, may be found in other parts
+ of the PostgreSQL documentation set.
+ See the cross-references listed on each reference page.
+
+
+
+ The Reference Manual entries are also
+ available as traditional man
pages.
+
+
+
SQL Commands
- This is reference information for the SQL
- commands supported by Postgres.
+ This part contains reference information for the
+ SQL commands supported by
+ PostgreSQL. By SQL
the
+ language in general is meant; information about the standards
+ conformance and compatibility of each command can be found on the
+ respective reference page.
@@ -120,15 +143,20 @@ Disable this chapter until we have more functions documented.
- This is reference information for
- Postgres client applications and
- utilities.
+ This part contains reference information for
+ PostgreSQL client applications and
+ utilities. Not all of these commands are of general utility, some
+ may require special privileges. The common feature of these
+ applications is that they can be run on any host, independent of
+ where the database server resides.
&createdb;
+ &createlang;
&createuser;
&dropdb;
+ &droplang;
&dropuser;
&ecpgRef;
&pgAccess;
@@ -148,14 +176,14 @@ Disable this chapter until we have more functions documented.
- This is reference information for
- Postgres
- server applications and support utilities.
+ This part contains reference information for
+ PostgreSQL server applications and
+ support utilities. These commands can only be run usefully on the
+ host where the database server resides. Other utility programs
+ are listed in .
- &createlang;
- &droplang;
&initdb;
&initlocation;
&ipcclean;