diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index 67de4b8e54..4109cbafa6 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -1,4 +1,4 @@ - + Data Definition @@ -818,8 +818,8 @@ CREATE TABLE order_items ( columns that are either a primary key or form a unique constraint. If the foreign key references a unique constraint, there are some additional possibilities regarding how null values are matched. - These are explained in the CREATE TABLE entry - in . + These are explained in the reference documentation for + . diff --git a/doc/src/sgml/dml.sgml b/doc/src/sgml/dml.sgml index 655af76fe5..6476fcf14a 100644 --- a/doc/src/sgml/dml.sgml +++ b/doc/src/sgml/dml.sgml @@ -1,4 +1,4 @@ - + Data Manipulation @@ -88,9 +88,9 @@ INSERT INTO products DEFAULT VALUES; To do bulk loads, that is, inserting a lot of data, - take a look at the COPY command (see - ). It is not as flexible as the - INSERT command, but more efficient. + take a look at the command. It is not as flexible as the + INSERT command, but is more efficient. diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index d9cb8bb018..6729dc677e 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,5 +1,5 @@ @@ -7268,7 +7268,7 @@ SELECT pg_type_is_visible('myschema.widget'::regtype); linkend="functions-aggregate-table"> shows the built-in aggregate functions. The special syntax considerations for aggregate functions are explained in . - Consult for additional introductory + Consult for additional introductory information. diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index a44ccfde88..6adfd85df0 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -1,5 +1,5 @@ @@ -2425,7 +2425,7 @@ dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir' behavior you can set this variable to off, but in the long run you are encouraged to change your applications to use the ONLY key word to exclude subtables. See - for more information about inheritance. + for more information about inheritance. diff --git a/doc/src/sgml/sql.sgml b/doc/src/sgml/sql.sgml index 89de666802..1cb68004be 100644 --- a/doc/src/sgml/sql.sgml +++ b/doc/src/sgml/sql.sgml @@ -1,8 +1,8 @@ - + SQL diff --git a/doc/src/sgml/start.sgml b/doc/src/sgml/start.sgml index d10ad5b3c5..2aafe7813e 100644 --- a/doc/src/sgml/start.sgml +++ b/doc/src/sgml/start.sgml @@ -1,5 +1,5 @@ @@ -397,7 +397,7 @@ mydb=# command shell. (For more internal commands, type \? at the psql prompt.) The full capabilities of psql are documented in - . If PostgreSQL is + . If PostgreSQL is installed correctly you can also type man psql at the operating system shell prompt to see the documentation. In this tutorial we will not use these features explicitly, but you diff --git a/doc/src/sgml/trigger.sgml b/doc/src/sgml/trigger.sgml index 37870c42f9..d9ee33a296 100644 --- a/doc/src/sgml/trigger.sgml +++ b/doc/src/sgml/trigger.sgml @@ -1,5 +1,5 @@ @@ -40,7 +40,8 @@ $Header: /cvsroot/pgsql/doc/src/sgml/trigger.sgml,v 1.28 2003/04/11 18:41:20 pet - The syntax for creating triggers is described in . + The syntax for creating triggers is described in + . diff --git a/doc/src/sgml/user-manag.sgml b/doc/src/sgml/user-manag.sgml index 5f8f13a86d..660d1ccd75 100644 --- a/doc/src/sgml/user-manag.sgml +++ b/doc/src/sgml/user-manag.sgml @@ -1,5 +1,5 @@ @@ -203,8 +203,9 @@ ALTER GROUP name DROP USER uname1CREATE, TEMPORARY, EXECUTE, USAGE, and ALL PRIVILEGES. For more information on the different types of privileges support by - PostgreSQL, refer to the - GRANT page in . The right to modify or + PostgreSQL, see the + reference page. + The right to modify or destroy an object is always the privilege of the owner only. To assign privileges, the GRANT command is used. So, if joe is an existing user, and diff --git a/doc/src/sgml/xfunc.sgml b/doc/src/sgml/xfunc.sgml index 25997718de..0193691a08 100644 --- a/doc/src/sgml/xfunc.sgml +++ b/doc/src/sgml/xfunc.sgml @@ -1,5 +1,5 @@ @@ -2185,7 +2185,7 @@ CREATE FUNCTION test(smallint, double precision) RETURNS ... it is not immediately clear which function would be called with some trivial input like test(1, 1.5). The - currently implemented resolution rules are described in the + currently implemented resolution rules are described in , but it is unwise to design a system that subtly relies on this behavior. diff --git a/doc/src/sgml/xtypes.sgml b/doc/src/sgml/xtypes.sgml index 35112c1c5e..74ced8cd83 100644 --- a/doc/src/sgml/xtypes.sgml +++ b/doc/src/sgml/xtypes.sgml @@ -1,5 +1,5 @@ @@ -168,8 +168,8 @@ CREATE TYPE complex ( - For further details see the description of the CREATE - TYPE command in . + For further details see the description of the + command.