1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-05 07:41:25 +03:00
This commit is contained in:
Bruce Momjian
1998-06-24 13:21:30 +00:00
parent f391dcd0bf
commit a8376c1c84
42 changed files with 122 additions and 135 deletions

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/alter_table.l,v 1.6 1998/06/23 17:52:29 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/alter_table.l,v 1.7 1998/06/24 13:21:23 momjian Exp $
.TH "ALTER TABLE" SQL 09/25/97 PostgreSQL .TH "ALTER TABLE" SQL 09/25/97 PostgreSQL
.SH NAME .SH NAME
alter table - add attributes to a class, or rename an attribute or class alter table - add attributes to a class, or rename an attribute or class
@@ -30,7 +30,7 @@ after this command is executed.
.PP .PP
The new attributes and their types are specified The new attributes and their types are specified
in the same style and with the the same restrictions as in in the same style and with the the same restrictions as in
.IR "create_table" (l). .IR create_table(l).
.PP .PP
In order to add an attribute to each class in an entire inheritance In order to add an attribute to each class in an entire inheritance
hierarchy, use the hierarchy, use the
@@ -101,4 +101,3 @@ alter table person * rename column last_name to family_name
.SH "SEE ALSO" .SH "SEE ALSO"
create_table(l), create_table(l),
update(l). update(l).

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/cleardbdir.1,v 1.3 1998/01/11 22:17:07 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/cleardbdir.1,v 1.4 1998/06/24 13:21:23 momjian Exp $
.TH CLEARDBDIR UNIX 11/05/95 PostgreSQL PostgreSQL .TH CLEARDBDIR UNIX 11/05/95 PostgreSQL PostgreSQL
.SH NAME .SH NAME
cleardbdir - completely destroys all database files cleardbdir - completely destroys all database files
@@ -20,4 +20,3 @@ should ensure the
process is not running before running cleardbdir. process is not running before running cleardbdir.
.SH "SEE ALSO" .SH "SEE ALSO"
initdb(1) initdb(1)

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/copy.l,v 1.5 1998/06/23 17:52:30 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/copy.l,v 1.6 1998/06/24 13:21:24 momjian Exp $
.TH COPY SQL 11/05/95 PostgreSQL PostgreSQL .TH COPY SQL 11/05/95 PostgreSQL PostgreSQL
.SH NAME .SH NAME
copy - copy data to or from a class from or to a Unix file. copy - copy data to or from a class from or to a Unix file.

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_function.l,v 1.9 1998/06/23 17:52:31 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/create_function.l,v 1.10 1998/06/24 13:21:24 momjian Exp $
.TH "CREATE FUNCTION" SQL 11/05/95 PostgreSQL PostgreSQL .TH "CREATE FUNCTION" SQL 11/05/95 PostgreSQL PostgreSQL
.SH "NAME" .SH "NAME"
create function - define a new function create function - define a new function

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_operator.l,v 1.5 1998/06/23 17:52:32 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/create_operator.l,v 1.6 1998/06/24 13:21:24 momjian Exp $
.TH "CREATE OPERATOR" SQL 11/05/95 PostgreSQL PostgreSQL .TH "CREATE OPERATOR" SQL 11/05/95 PostgreSQL PostgreSQL
.SH NAME .SH NAME
create operator - define a new user operator create operator - define a new user operator
@@ -66,7 +66,7 @@ The name of the operator,
can be composed of symbols only. Also, the can be composed of symbols only. Also, the
.IR func_name .IR func_name
procedure must have been previously defined using procedure must have been previously defined using
.IR "create_function" (l) .IR create_function(l)
and must have one or two arguments. and must have one or two arguments.
.PP .PP
.\" that multiple instances of the .\" that multiple instances of the
@@ -191,7 +191,7 @@ is present in the qualification, then Postgres may have to estimate the
fraction of the instances in MYBOXES that satisfy the clause. The fraction of the instances in MYBOXES that satisfy the clause. The
function res_proc must be a registered function (meaning it is already function res_proc must be a registered function (meaning it is already
defined using defined using
.IR "define function" (l)) .IR create_function(l))
which accepts one argument of the correct data type and returns a which accepts one argument of the correct data type and returns a
floating point number. The query optimizer simply calls this floating point number. The query optimizer simply calls this
function, passing the parameter "0,0,1,1" function, passing the parameter "0,0,1,1"

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_rule.l,v 1.8 1998/06/23 17:52:32 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/create_rule.l,v 1.9 1998/06/24 13:21:24 momjian Exp $
.TH "CREATE RULE" SQL 11/05/95 PostgreSQL PostgreSQL .TH "CREATE RULE" SQL 11/05/95 PostgreSQL PostgreSQL
.SH NAME .SH NAME
create rule - define a new rule create rule - define a new rule
@@ -140,8 +140,7 @@ select * from EMP
.PP .PP
You must have You must have
.IR "rule definition" .IR "rule definition"
access to a class in order to define a rule on it (see access to a class in order to define a rule on it.
.IR "change acl" (l).
.SH EXAMPLES .SH EXAMPLES
.nf .nf
-- --

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_table.l,v 1.20 1998/06/24 12:52:47 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/create_table.l,v 1.21 1998/06/24 13:21:24 momjian Exp $
.TH "CREATE TABLE" SQL 09/25/97 PostgreSQL .TH "CREATE TABLE" SQL 09/25/97 PostgreSQL
.SH NAME .SH NAME
create table - create a new class create table - create a new class
@@ -63,9 +63,9 @@ Each new class
.IR classname .IR classname
is automatically created as a type. Therefore, one or more instances is automatically created as a type. Therefore, one or more instances
from the class are automatically a type and can be used in from the class are automatically a type and can be used in
.IR "alter_table" (l) .IR alter_table(l)
or other or other
.BR "create table" .BR create_table(l)
statements. See statements. See
.IR pgintro(1) .IR pgintro(1)
for a further discussion of this point. for a further discussion of this point.

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_type.l,v 1.5 1998/06/23 17:52:33 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/create_type.l,v 1.6 1998/06/24 13:21:24 momjian Exp $
.TH "CREATE TYPE" SQL 11/05/95 PostgreSQL PostgreSQL .TH "CREATE TYPE" SQL 11/05/95 PostgreSQL PostgreSQL
.SH NAME .SH NAME
create type - define a new base data type create type - define a new base data type
@@ -28,7 +28,7 @@ defined for this database.
.PP .PP
.BR "Create type" .BR "Create type"
requires the registration of two functions (using requires the registration of two functions (using
.IR "create_function" (l)) .IR create_function(l))
before defining the type. The representation of a new base type is before defining the type. The representation of a new base type is
determined by determined by
.IR input_function , .IR input_function ,

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_user.l,v 1.2 1998/03/06 18:03:21 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/create_user.l,v 1.3 1998/06/24 13:21:24 momjian Exp $
.TH "CREATE USER" SQL 01/26/98 PostgreSQL PostgreSQL .TH "CREATE USER" SQL 01/26/98 PostgreSQL PostgreSQL
.SH NAME .SH NAME
create user -- create a new user within a PostgreSQL instance create user -- create a new user within a PostgreSQL instance
@@ -87,4 +87,4 @@ create user tab with password jw8s0F4 valid until 'Jan 1 2002';
create user tab with password jw8s0F4 createdb; create user tab with password jw8s0F4 createdb;
.fi .fi
.SH "SEE ALSO" .SH "SEE ALSO"
pg_crypt(3), alter_user(l), drop_user(l). alter_user(l), drop_user(l).

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/create_version.l,v 1.4 1998/06/23 17:52:34 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/create_version.l,v 1.5 1998/06/24 13:21:25 momjian Exp $
.TH "CREATE VERSION" SQL 01/23/93 PostgreSQL PostgreSQL .TH "CREATE VERSION" SQL 01/23/93 PostgreSQL PostgreSQL
.SH NAME .SH NAME
create version - construct a version class create version - construct a version class
@@ -62,7 +62,7 @@ in [ONG90].
create version foobar from barfoo [ "Jan 17 1990" ] create version foobar from barfoo [ "Jan 17 1990" ]
.fi .fi
.SH "SEE ALSO" .SH "SEE ALSO"
create_view(l), merge(l). create_view(l).
.SH "BUGS" .SH "BUGS"
Snapshots (i.e., the optional Snapshots (i.e., the optional
.IR abstime .IR abstime

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/createdb.1,v 1.8 1998/01/29 02:26:33 scrappy Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/createdb.1,v 1.9 1998/06/24 13:21:25 momjian Exp $
.TH CREATEDB UNIX 11/05/95 PostgreSQL PostgreSQL .TH CREATEDB UNIX 11/05/95 PostgreSQL PostgreSQL
.SH NAME .SH NAME
createdb - create a database createdb - create a database

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/createuser.1,v 1.7 1998/03/06 18:03:31 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/createuser.1,v 1.8 1998/06/24 13:21:25 momjian Exp $
.TH CREATEUSER UNIX 11/05/95 PostgreSQL PostgreSQL .TH CREATEUSER UNIX 11/05/95 PostgreSQL PostgreSQL
.SH NAME .SH NAME
createuser - create a Postgres user createuser - create a Postgres user

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/delete.l,v 1.3 1998/01/11 22:17:24 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/delete.l,v 1.4 1998/06/24 13:21:25 momjian Exp $
.TH DELETE SQL 11/05/95 PostgreSQL PostgreSQL .TH DELETE SQL 11/05/95 PostgreSQL PostgreSQL
.SH NAME .SH NAME
delete - delete instances from a class delete - delete instances from a class
@@ -17,9 +17,7 @@ If the qualification is absent, the effect is to delete all instances
in the class. The result is a valid, but empty class. in the class. The result is a valid, but empty class.
.PP .PP
You must have write access to the class in order to modify it, as well You must have write access to the class in order to modify it, as well
as read access to any class whose values are read in the qualification as read access to any class whose values are read in the qualification.
(see
.IR "change acl" (l).
.SH EXAMPLE .SH EXAMPLE
.nf .nf
-- --

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/destroydb.1,v 1.7 1998/01/26 01:42:45 scrappy Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/destroydb.1,v 1.8 1998/06/24 13:21:25 momjian Exp $
.TH DESTROYDB UNIX 11/05/95 PostgreSQL PostgreSQL .TH DESTROYDB UNIX 11/05/95 PostgreSQL PostgreSQL
.SH NAME .SH NAME
destroydb - destroy an existing database destroydb - destroy an existing database

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/destroyuser.1,v 1.7 1998/03/06 18:03:35 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/destroyuser.1,v 1.8 1998/06/24 13:21:25 momjian Exp $
.TH DESTROYUSER UNIX 11/05/95 PostgreSQL PostgreSQL .TH DESTROYUSER UNIX 11/05/95 PostgreSQL PostgreSQL
.SH NAME .SH NAME
destroyuser - destroy a Postgres user and associated databases destroyuser - destroy a Postgres user and associated databases

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_database.l,v 1.3 1998/06/23 17:52:35 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/drop_database.l,v 1.4 1998/06/24 13:21:26 momjian Exp $
.TH "DROP DATABASE" SQL 01/23/93 PostgreSQL PostgreSQL .TH "DROP DATABASE" SQL 01/23/93 PostgreSQL PostgreSQL
.SH NAME .SH NAME
drop database - destroy an existing database drop database - destroy an existing database

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_table.l,v 1.3 1998/06/23 17:52:36 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/drop_table.l,v 1.4 1998/06/24 13:21:26 momjian Exp $
.TH "DROP TABLE" SQL 09/26/97 PostgreSQL .TH "DROP TABLE" SQL 09/26/97 PostgreSQL
.SH NAME .SH NAME
drop table - destroy existing classes drop table - destroy existing classes

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_user.l,v 1.1 1998/01/25 07:42:02 scrappy Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/drop_user.l,v 1.2 1998/06/24 13:21:26 momjian Exp $
.TH "DROP USER" SQL 01/26/98 PostgreSQL PostgreSQL .TH "DROP USER" SQL 01/26/98 PostgreSQL PostgreSQL
.SH NAME .SH NAME
drop user -- drop user from within a PostgreSQL instance drop user -- drop user from within a PostgreSQL instance
@@ -27,4 +27,3 @@ drop user tab;
.SH "SEE ALSO" .SH "SEE ALSO"
alter_user(l), create_user(l). alter_user(l), create_user(l).

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_view.l,v 1.3 1998/06/23 17:52:37 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/drop_view.l,v 1.4 1998/06/24 13:21:26 momjian Exp $
.TH "DROP VIEW" SQL 04/25/94 PostgreSQL PostgreSQL .TH "DROP VIEW" SQL 04/25/94 PostgreSQL PostgreSQL
.SH NAME .SH NAME
drop view - removes a view from Postgres drop view - removes a view from Postgres
@@ -20,4 +20,4 @@ drop view myview
.fi .fi
.SH "SEE ALSO" .SH "SEE ALSO"
create_view(l), create_view(l),
drop_rule(l), drop_rule(l).

View File

@@ -65,4 +65,3 @@ ecpg cannot use pointer variables except [unsigned] char *
returns 0 to the shell on successful completion, -1 for errors, returns 0 to the shell on successful completion, -1 for errors,
.SH "SEE ALSO" .SH "SEE ALSO"
cc(1). cc(1).

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/fetch.l,v 1.6 1998/03/23 15:09:29 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/fetch.l,v 1.7 1998/06/24 13:21:26 momjian Exp $
.TH FETCH SQL 01/23/93 PostgreSQL PostgreSQL .TH FETCH SQL 01/23/93 PostgreSQL PostgreSQL
.SH NAME .SH NAME
fetch - fetch instance(s) from a cursor fetch - fetch instance(s) from a cursor

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/grant.l,v 1.4 1998/03/26 21:01:47 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/grant.l,v 1.5 1998/06/24 13:21:26 momjian Exp $
.TH GRANT SQL 11/05/95 PostgreSQL PostgreSQL .TH GRANT SQL 11/05/95 PostgreSQL PostgreSQL
.SH NAME .SH NAME
grant - grant access control to a user or group grant - grant access control to a user or group
@@ -28,4 +28,4 @@ grant insert
to public to public
.fi .fi
.SH "SEE ALSO" .SH "SEE ALSO"
revoke(l) revoke(l).

View File

@@ -1,5 +1,5 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" $Header: /cvsroot/pgsql/src/man/Attic/initdb.1,v 1.3 1998/01/11 22:17:38 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/initdb.1,v 1.4 1998/06/24 13:21:26 momjian Exp $
.TH INITDB UNIX 11/29/96 PostgreSQL PostgreSQL .TH INITDB UNIX 11/29/96 PostgreSQL PostgreSQL
.SH NAME .SH NAME
initdb - create a new Postgres database system initdb - create a new Postgres database system
@@ -243,6 +243,4 @@ vacuum(l),
bki(5), bki(5),
create_database(l), create_database(l),
createuser(1), createuser(1),
psql(1) psql(1).

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/insert.l,v 1.10 1998/06/23 17:52:37 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/insert.l,v 1.11 1998/06/24 13:21:27 momjian Exp $
.TH INSERT SQL 11/05/95 PostgreSQL PostgreSQL .TH INSERT SQL 11/05/95 PostgreSQL PostgreSQL
.SH NAME .SH NAME
insert - insert tuples to a relation insert - insert tuples to a relation
@@ -77,8 +77,7 @@ contain garbage.
.PP .PP
You must have write or append access to a class in order to append to You must have write or append access to a class in order to append to
it, as well as read access on any class whose values are read in the it, as well as read access on any class whose values are read in the
target list or qualification (see target list or qualification.
.IR "change acl" (l)).
.SH EXAMPLES .SH EXAMPLES
.nf .nf
-- --

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/large_objects.3,v 1.7 1998/06/16 03:03:03 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/large_objects.3,v 1.8 1998/06/24 13:21:27 momjian Exp $
.TH "LARGE OBJECTS" INTRO 03/18/94 PostgreSQL PostgreSQL .TH "LARGE OBJECTS" INTRO 03/18/94 PostgreSQL PostgreSQL
.SH DESCRIPTION .SH DESCRIPTION
.PP .PP
@@ -259,7 +259,7 @@ library.
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/man/Attic/large_objects.3,v 1.7 1998/06/16 03:03:03 momjian Exp $ * $Header: /cvsroot/pgsql/src/man/Attic/large_objects.3,v 1.8 1998/06/24 13:21:27 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.16 1998/04/26 04:09:48 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.17 1998/06/24 13:21:27 momjian Exp $
.TH LIBPQ INTRO 03/12/94 PostgreSQL PostgreSQL .TH LIBPQ INTRO 03/12/94 PostgreSQL PostgreSQL
.SH DESCRIPTION .SH DESCRIPTION
Libpq is the programmer's interface to Postgres. Libpq is a set of Libpq is the programmer's interface to Postgres. Libpq is a set of

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/listen.l,v 1.5 1998/06/23 17:52:37 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/listen.l,v 1.6 1998/06/24 13:21:27 momjian Exp $
.TH "LISTEN" SQL 03/12/94 PostgreSQL PostgreSQL .TH "LISTEN" SQL 03/12/94 PostgreSQL PostgreSQL
.SH NAME .SH NAME
listen - listen for notification on a relation listen - listen for notification on a relation

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/notify.l,v 1.3 1998/01/11 22:17:45 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/notify.l,v 1.4 1998/06/24 13:21:27 momjian Exp $
.TH "NOTIFY" SQL 11/05/95 PostgreSQL PostgreSQL .TH "NOTIFY" SQL 11/05/95 PostgreSQL PostgreSQL
.SH NAME .SH NAME
notify - signal all frontends and backends listening on a class notify - signal all frontends and backends listening on a class
@@ -45,4 +45,4 @@ never be processed.
.SH "SEE ALSO" .SH "SEE ALSO"
define rule(l), define rule(l),
listen(l), listen(l),
libpq. libpq(3).

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/pg_dump.1,v 1.10 1998/01/29 02:26:47 scrappy Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/pg_dump.1,v 1.11 1998/06/24 13:21:28 momjian Exp $
.TH PG_DUMP UNIX 1/20/96 PostgreSQL PostgreSQL .TH PG_DUMP UNIX 1/20/96 PostgreSQL PostgreSQL
.SH NAME .SH NAME
pg_dump - dumps out a Postgres database into a script file pg_dump - dumps out a Postgres database into a script file
@@ -128,4 +128,4 @@ To reload it:
psql -e database <db.out psql -e database <db.out
.SH "SEE ALSO" .SH "SEE ALSO"
copy(l) copy(l).

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/pg_dumpall.1,v 1.4 1998/03/06 18:03:37 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/pg_dumpall.1,v 1.5 1998/06/24 13:21:28 momjian Exp $
.TH pg_dumpall UNIX 1/20/96 PostgreSQL PostgreSQL .TH pg_dumpall UNIX 1/20/96 PostgreSQL PostgreSQL
.SH NAME .SH NAME
pg_dumpall - dumps out all Postgres databases into a script file pg_dumpall - dumps out all Postgres databases into a script file
@@ -26,4 +26,4 @@ To reload into a fresh installation (you can use psql options):
.fi .fi
.SH "SEE ALSO" .SH "SEE ALSO"
pg_dump(1) pg_dump(1).

View File

@@ -1,5 +1,5 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" $Header: /cvsroot/pgsql/src/man/Attic/pg_hba.conf.5,v 1.5 1998/03/06 18:03:38 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/pg_hba.conf.5,v 1.6 1998/06/24 13:21:28 momjian Exp $
.TH pg_hba.conf 5 1/26/98 PostgreSQL PostgreSQL .TH pg_hba.conf 5 1/26/98 PostgreSQL PostgreSQL
.SH NAME .SH NAME
$PGDATA/pg_hba.conf $PGDATA/pg_hba.conf
@@ -112,4 +112,3 @@ host all 192.168.0.0 255.255.255.0 crypt
.SH "SEE ALSO" .SH "SEE ALSO"
pgintro(1). pgintro(1).

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/pg_passwd.1,v 1.3 1998/01/26 01:42:49 scrappy Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/pg_passwd.1,v 1.4 1998/06/24 13:21:28 momjian Exp $
.TH PG_PASSWD UNIX 11/05/95 PostgreSQL PostgreSQL .TH PG_PASSWD UNIX 11/05/95 PostgreSQL PostgreSQL
.SH NAME .SH NAME
pg_passwd - manipulate the flat password file pg_passwd - manipulate the flat password file
@@ -113,4 +113,3 @@ $PGDATA/pg_hba.conf
The Host Based Authentication file The Host Based Authentication file
.SH "SEE ALSO" .SH "SEE ALSO"
psql(1). psql(1).

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/pgbuiltin.3,v 1.10 1997/11/18 23:04:27 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/pgbuiltin.3,v 1.11 1998/06/24 13:21:29 momjian Exp $
.TH PGBUILTIN INTRO 04/01/97 PostgreSQL PostgreSQL .TH PGBUILTIN INTRO 04/01/97 PostgreSQL PostgreSQL
.PP .PP
.SH "DESCRIPTION" .SH "DESCRIPTION"

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/pgintro.1,v 1.6 1998/06/24 13:05:01 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/pgintro.1,v 1.7 1998/06/24 13:21:29 momjian Exp $
.TH PGINTRO UNIX 11/05/95 PostgreSQL PostgreSQL .TH PGINTRO UNIX 11/05/95 PostgreSQL PostgreSQL
.SP INFORMATION UNIX 11/05/95 .SP INFORMATION UNIX 11/05/95
.BH "SECTION 2 - Unix COMMANDS (Unix)" .BH "SECTION 2 - Unix COMMANDS (Unix)"
@@ -126,7 +126,7 @@ system catalogs (or modification of their schemas) is never allowed.
.SS "Access Privilege .SS "Access Privilege
The use of access privilege to limit reading, writing and setting The use of access privilege to limit reading, writing and setting
of rules on classes is covered in of rules on classes is covered in
.IR "grant/revoke" (l). .IR grant/revoke(l).
.SS "Class removal and schema modification" .SS "Class removal and schema modification"
Commands that destroy or modify the structure of an existing class, Commands that destroy or modify the structure of an existing class,
such as such as

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/postmaster.1,v 1.11 1998/01/26 01:42:52 scrappy Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/postmaster.1,v 1.12 1998/06/24 13:21:29 momjian Exp $
.TH POSTMASTER UNIX 11/05/95 PostgreSQL PostgreSQL .TH POSTMASTER UNIX 11/05/95 PostgreSQL PostgreSQL
.SH "NAME" .SH "NAME"
postmaster - run the Postgres postmaster postmaster - run the Postgres postmaster

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/psql.1,v 1.25 1998/06/23 15:43:19 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/psql.1,v 1.26 1998/06/24 13:21:29 momjian Exp $
.TH PSQL UNIX 1/20/96 PostgreSQL PostgreSQL .TH PSQL UNIX 1/20/96 PostgreSQL PostgreSQL
.SH NAME .SH NAME
psql - run the interactive query front-end psql - run the interactive query front-end
@@ -437,4 +437,3 @@ any reason.
libpq(3), libpq(3),
postgres(1), postgres(1),
postmaster(1). postmaster(1).

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/reset.l,v 1.3 1998/01/11 22:17:55 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/reset.l,v 1.4 1998/06/24 13:21:29 momjian Exp $
.TH RESET SQL 05/14/97 PostgreSQL PostgreSQL .TH RESET SQL 05/14/97 PostgreSQL PostgreSQL
.SH NAME .SH NAME
reset - restore run-time parameters for session to default values reset - restore run-time parameters for session to default values

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/revoke.l,v 1.3 1998/01/11 22:17:56 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/revoke.l,v 1.4 1998/06/24 13:21:29 momjian Exp $
.TH REVOKE SQL 11/05/95 PostgreSQL PostgreSQL .TH REVOKE SQL 11/05/95 PostgreSQL PostgreSQL
.SH NAME .SH NAME
revoke - revoke access privileges revoke - revoke access privileges
@@ -26,4 +26,4 @@ revoke insert
from public from public
.fi .fi
.SH "SEE ALSO" .SH "SEE ALSO"
grant(l) grant(l).

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/select.l,v 1.8 1998/06/23 17:52:37 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/select.l,v 1.9 1998/06/24 13:21:29 momjian Exp $
.TH SELECT SQL 11/05/95 PostgreSQL PostgreSQL .TH SELECT SQL 11/05/95 PostgreSQL PostgreSQL
.SH NAME .SH NAME
select - retrieve instances from a class select - retrieve instances from a class
@@ -71,7 +71,7 @@ of the system depends on whether you used "nested dots" to project
out attributes of the complex type or not. See the examples below. out attributes of the complex type or not. See the examples below.
.PP .PP
You must have read access to a class to read its values (see You must have read access to a class to read its values (see
.IR "grant/revoke" (l). .IR grant/revoke(l).
.SH EXAMPLES .SH EXAMPLES
.nf .nf
-- --

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/set.l,v 1.8 1998/01/11 22:17:58 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/set.l,v 1.9 1998/06/24 13:21:30 momjian Exp $
.TH SET SQL 05/14/97 PostgreSQL PostgreSQL .TH SET SQL 05/14/97 PostgreSQL PostgreSQL
.SH NAME .SH NAME
set - set run-time parameters for session set - set run-time parameters for session
@@ -25,7 +25,7 @@ is enclosed in single-quotes.
.IR DateStyle .IR DateStyle
determines the output format for the date and time data types. determines the output format for the date and time data types.
See See
.IR "pgbuiltin" (3) .IR pgbuiltin(3)
for more information on available styles. for more information on available styles.
.ce 1 .ce 1

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/show.l,v 1.3 1998/01/11 22:17:59 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/show.l,v 1.4 1998/06/24 13:21:30 momjian Exp $
.TH SHOW SQL 05/14/97 PostgreSQL PostgreSQL .TH SHOW SQL 05/14/97 PostgreSQL PostgreSQL
.SH NAME .SH NAME
show - show run-time parameters for session show - show run-time parameters for session

View File

@@ -1,6 +1,6 @@
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/sql.l,v 1.11 1998/04/26 04:09:51 momjian Exp $ .\" $Header: /cvsroot/pgsql/src/man/Attic/sql.l,v 1.12 1998/06/24 13:21:30 momjian Exp $
.TH INTRODUCTION SQL 11/5/95 PostgreSQL PostgreSQL .TH INTRODUCTION SQL 11/5/95 PostgreSQL PostgreSQL
.SH "Section 4 - SQL Commands (COMMANDS)" .SH "Section 4 - SQL Commands (COMMANDS)"
.SH "General Information" .SH "General Information"
@@ -173,7 +173,7 @@ New and current can only appear in the action portion of a rule, while
other instance variables can be used in any SQL statement. other instance variables can be used in any SQL statement.
.IR Composite_field .IR Composite_field
is a field of of one of the Postgres composite types indicated in the is a field of of one of the Postgres composite types indicated in the
.IR information (l) .IR pgbuiltin(l)
section, while successive composite fields address attributes in the section, while successive composite fields address attributes in the
class(s) to which the composite field evaluates. Lastly, class(s) to which the composite field evaluates. Lastly,
.IR field .IR field