summaryrefslogtreecommitdiff
path: root/src/man/revoke.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/man/revoke.l')
-rw-r--r--src/man/revoke.l29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/man/revoke.l b/src/man/revoke.l
new file mode 100644
index 00000000000..66ec2c83013
--- /dev/null
+++ b/src/man/revoke.l
@@ -0,0 +1,29 @@
+.\" This is -*-nroff-*-
+.\" XXX standard disclaimer belongs here....
+.\" $Header: /cvsroot/pgsql/src/man/Attic/revoke.l,v 1.1 1996/11/14 10:17:58 scrappy Exp $
+.TH REVOKE SQL 11/05/95 Postgres95 Postgres95
+.SH NAME
+revoke \(em revoke access privileges
+.SH SYNOPSIS
+.nf
+\fBrevoke\fR <privilege[,privilege,...]>
+ \fBon\fR <rel1>[,...<reln>]
+ \fBfrom\fR [\fBpublic\fR | group <group> | <username>]
+
+ \fBprivilege\fR is {\fBALL\fR | \fBSELECT\fR | \fBINSERT\fR | \fBUPDATE\fR | \fBDELETE\fR | \fBRULE\fR}
+.fi
+.SH DESCRIPTION
+.PP
+.B revoke
+allows you to revoke privileges given to all users or certain users or groups.
+.SH EXAMPLES
+.nf
+--
+--Example of a revoke
+--
+revoke insert
+ on mytab
+ from public
+.fi
+.SH "SEE ALSO"
+grant(l)