Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > media > main-testing > by-pkgid > bab02a23fa9f3df8d66a9a3231b50245 > files > 793

postgresql8.3-docs-8.3.6-2mdv2008.1.x86_64.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>GRANT</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REV="MADE"
HREF="mailto:pgsql-docs@postgresql.org"><LINK
REL="HOME"
TITLE="PostgreSQL 8.3.6 Documentation"
HREF="index.html"><LINK
REL="UP"
TITLE="SQL Commands"
HREF="sql-commands.html"><LINK
REL="PREVIOUS"
TITLE="FETCH"
HREF="sql-fetch.html"><LINK
REL="NEXT"
TITLE="INSERT"
HREF="sql-insert.html"><LINK
REL="STYLESHEET"
TYPE="text/css"
HREF="stylesheet.css"><META
HTTP-EQUIV="Content-Type"
CONTENT="text/html; charset=ISO-8859-1"><META
NAME="creation"
CONTENT="2009-02-03T04:34:16"></HEAD
><BODY
CLASS="REFENTRY"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="5"
ALIGN="center"
VALIGN="bottom"
>PostgreSQL 8.3.6 Documentation</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="sql-fetch.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="sql-fetch.html"
>Fast Backward</A
></TD
><TD
WIDTH="60%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="top"
><A
HREF="sql-insert.html"
>Fast Forward</A
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="top"
><A
HREF="sql-insert.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="SQL-GRANT"
></A
>GRANT</H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN57940"
></A
><H2
>Name</H2
>GRANT&nbsp;--&nbsp;define access privileges</DIV
><A
NAME="AEN57943"
></A
><DIV
CLASS="REFSYNOPSISDIV"
><A
NAME="AEN57945"
></A
><H2
>Synopsis</H2
><PRE
CLASS="SYNOPSIS"
>GRANT { { SELECT | INSERT | UPDATE | DELETE | REFERENCES | TRIGGER }
    [,...] | ALL [ PRIVILEGES ] }
    ON [ TABLE ] <TT
CLASS="REPLACEABLE"
><I
>tablename</I
></TT
> [, ...]
    TO { [ GROUP ] <TT
CLASS="REPLACEABLE"
><I
>rolename</I
></TT
> | PUBLIC } [, ...] [ WITH GRANT OPTION ]

GRANT { { USAGE | SELECT | UPDATE }
    [,...] | ALL [ PRIVILEGES ] }
    ON SEQUENCE <TT
CLASS="REPLACEABLE"
><I
>sequencename</I
></TT
> [, ...]
    TO { [ GROUP ] <TT
CLASS="REPLACEABLE"
><I
>rolename</I
></TT
> | PUBLIC } [, ...] [ WITH GRANT OPTION ]

GRANT { { CREATE | CONNECT | TEMPORARY | TEMP } [,...] | ALL [ PRIVILEGES ] }
    ON DATABASE <TT
CLASS="REPLACEABLE"
><I
>dbname</I
></TT
> [, ...]
    TO { [ GROUP ] <TT
CLASS="REPLACEABLE"
><I
>rolename</I
></TT
> | PUBLIC } [, ...] [ WITH GRANT OPTION ]

GRANT { EXECUTE | ALL [ PRIVILEGES ] }
    ON FUNCTION <TT
CLASS="REPLACEABLE"
><I
>funcname</I
></TT
> ( [ [ <TT
CLASS="REPLACEABLE"
><I
>argmode</I
></TT
> ] [ <TT
CLASS="REPLACEABLE"
><I
>argname</I
></TT
> ] <TT
CLASS="REPLACEABLE"
><I
>argtype</I
></TT
> [, ...] ] ) [, ...]
    TO { [ GROUP ] <TT
CLASS="REPLACEABLE"
><I
>rolename</I
></TT
> | PUBLIC } [, ...] [ WITH GRANT OPTION ]

GRANT { USAGE | ALL [ PRIVILEGES ] }
    ON LANGUAGE <TT
CLASS="REPLACEABLE"
><I
>langname</I
></TT
> [, ...]
    TO { [ GROUP ] <TT
CLASS="REPLACEABLE"
><I
>rolename</I
></TT
> | PUBLIC } [, ...] [ WITH GRANT OPTION ]

GRANT { { CREATE | USAGE } [,...] | ALL [ PRIVILEGES ] }
    ON SCHEMA <TT
CLASS="REPLACEABLE"
><I
>schemaname</I
></TT
> [, ...]
    TO { [ GROUP ] <TT
CLASS="REPLACEABLE"
><I
>rolename</I
></TT
> | PUBLIC } [, ...] [ WITH GRANT OPTION ]

GRANT { CREATE | ALL [ PRIVILEGES ] }
    ON TABLESPACE <TT
CLASS="REPLACEABLE"
><I
>tablespacename</I
></TT
> [, ...]
    TO { [ GROUP ] <TT
CLASS="REPLACEABLE"
><I
>rolename</I
></TT
> | PUBLIC } [, ...] [ WITH GRANT OPTION ]

GRANT <TT
CLASS="REPLACEABLE"
><I
>role</I
></TT
> [, ...] TO <TT
CLASS="REPLACEABLE"
><I
>rolename</I
></TT
> [, ...] [ WITH ADMIN OPTION ]</PRE
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="SQL-GRANT-DESCRIPTION"
></A
><H2
>Description</H2
><P
>   The <TT
CLASS="COMMAND"
>GRANT</TT
> command has two basic variants: one
   that grants privileges on a database object (table, view, sequence,
   database, function, procedural language, schema, or tablespace),
   and one that grants membership in a role.  These variants are
   similar in many ways, but they are different enough to be described
   separately.
  </P
><P
>   As of <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> 8.1, the concepts of users and
   groups have been unified into a single kind of entity called a role.
   It is therefore no longer necessary to use the keyword <TT
CLASS="LITERAL"
>GROUP</TT
>
   to identify whether a grantee is a user or a group.  <TT
CLASS="LITERAL"
>GROUP</TT
>
   is still allowed in the command, but it is a noise word.
  </P
><DIV
CLASS="REFSECT2"
><A
NAME="SQL-GRANT-DESCRIPTION-OBJECTS"
></A
><H3
>GRANT on Database Objects</H3
><P
>   This variant of the <TT
CLASS="COMMAND"
>GRANT</TT
> command gives specific
   privileges on a database object to
   one or more roles.  These privileges are added
   to those already granted, if any.
  </P
><P
>   The key word <TT
CLASS="LITERAL"
>PUBLIC</TT
> indicates that the
   privileges are to be granted to all roles, including those that might
   be created later.  <TT
CLASS="LITERAL"
>PUBLIC</TT
> can be thought of as an
   implicitly defined group that always includes all roles.
   Any particular role will have the sum
   of privileges granted directly to it, privileges granted to any role it
   is presently a member of, and privileges granted to
   <TT
CLASS="LITERAL"
>PUBLIC</TT
>.
  </P
><P
>   If <TT
CLASS="LITERAL"
>WITH GRANT OPTION</TT
> is specified, the recipient
   of the privilege can in turn grant it to others.  Without a grant
   option, the recipient cannot do that.  Grant options cannot be granted
   to <TT
CLASS="LITERAL"
>PUBLIC</TT
>.
  </P
><P
>   There is no need to grant privileges to the owner of an object
   (usually the user that created it),
   as the owner has all privileges by default.  (The owner could,
   however, choose to revoke some of his own privileges for safety.)
   The right to drop an object, or to alter its definition in any way is
   not described by a grantable privilege; it is inherent in the owner,
   and cannot be granted or revoked.  The owner implicitly has all grant
   options for the object, too.
  </P
><P
>   Depending on the type of object, the initial default privileges might
   include granting some privileges to <TT
CLASS="LITERAL"
>PUBLIC</TT
>.
   The default is no public access for tables, schemas, and tablespaces;
   <TT
CLASS="LITERAL"
>CONNECT</TT
> privilege and <TT
CLASS="LITERAL"
>TEMP</TT
> table creation privilege
   for databases;
   <TT
CLASS="LITERAL"
>EXECUTE</TT
> privilege for functions; and
   <TT
CLASS="LITERAL"
>USAGE</TT
> privilege for languages.
   The object owner can of course revoke these privileges.  (For maximum
   security, issue the <TT
CLASS="COMMAND"
>REVOKE</TT
> in the same transaction that
   creates the object; then there is no window in which another user
   can use the object.)
  </P
><P
>   The possible privileges are:

   <P
></P
></P><DIV
CLASS="VARIABLELIST"
><DL
><DT
>SELECT</DT
><DD
><P
>       Allows <A
HREF="sql-select.html"
><I
>SELECT</I
></A
> from
       any column of the specified table, view, or sequence.
       Also allows the use of
       <A
HREF="sql-copy.html"
><I
>COPY</I
></A
> TO.
       This privilege is also needed to reference existing column values in
       <A
HREF="sql-update.html"
><I
>UPDATE</I
></A
> or
       <A
HREF="sql-delete.html"
><I
>DELETE</I
></A
>.
       For sequences, this privilege also allows the use of the
       <CODE
CLASS="FUNCTION"
>currval</CODE
> function.
      </P
></DD
><DT
>INSERT</DT
><DD
><P
>       Allows <A
HREF="sql-insert.html"
><I
>INSERT</I
></A
> of a new
       row into the specified table.
       Also allows <A
HREF="sql-copy.html"
><I
>COPY</I
></A
> FROM.
      </P
></DD
><DT
>UPDATE</DT
><DD
><P
>       Allows <A
HREF="sql-update.html"
><I
>UPDATE</I
></A
> of any
       column of the specified table.
       (In practice, any nontrivial <TT
CLASS="COMMAND"
>UPDATE</TT
> command will require
       <TT
CLASS="LITERAL"
>SELECT</TT
> privilege as well, since it must reference table
       columns to determine which rows to update, and/or to compute new
       values for columns.)
       <TT
CLASS="LITERAL"
>SELECT ... FOR UPDATE</TT
>
       and <TT
CLASS="LITERAL"
>SELECT ... FOR SHARE</TT
>
       also require this privilege, in addition to the
       <TT
CLASS="LITERAL"
>SELECT</TT
> privilege.  For sequences, this
       privilege allows the use of the <CODE
CLASS="FUNCTION"
>nextval</CODE
> and
       <CODE
CLASS="FUNCTION"
>setval</CODE
> functions.
      </P
></DD
><DT
>DELETE</DT
><DD
><P
>       Allows <A
HREF="sql-delete.html"
><I
>DELETE</I
></A
> of a row
       from the specified table.
       (In practice, any nontrivial <TT
CLASS="COMMAND"
>DELETE</TT
> command will require
       <TT
CLASS="LITERAL"
>SELECT</TT
> privilege as well, since it must reference table
       columns to determine which rows to delete.)
      </P
></DD
><DT
>REFERENCES</DT
><DD
><P
>       To create a foreign key constraint, it is
       necessary to have this privilege on both the referencing and
       referenced tables.
      </P
></DD
><DT
>TRIGGER</DT
><DD
><P
>       Allows the creation of a trigger on the specified table.  (See the
       <A
HREF="sql-createtrigger.html"
><I
>CREATE TRIGGER</I
></A
> statement.)
      </P
></DD
><DT
>CREATE</DT
><DD
><P
>       For databases, allows new schemas to be created within the database.
      </P
><P
>       For schemas, allows new objects to be created within the schema.
       To rename an existing object, you must own the object <SPAN
CLASS="emphasis"
><I
CLASS="EMPHASIS"
>and</I
></SPAN
>
       have this privilege for the containing schema.
      </P
><P
>       For tablespaces, allows tables, indexes, and temporary files to be
       created within the tablespace, and allows databases to be created that
       have the tablespace as their default tablespace.  (Note that revoking
       this privilege will not alter the placement of existing objects.)
      </P
></DD
><DT
>CONNECT</DT
><DD
><P
>       Allows the user to connect to the specified database.  This
       privilege is checked at connection startup (in addition to checking
       any restrictions imposed by <TT
CLASS="FILENAME"
>pg_hba.conf</TT
>).
      </P
></DD
><DT
>TEMPORARY<BR>TEMP</DT
><DD
><P
>       Allows temporary tables to be created while using the specified database.
      </P
></DD
><DT
>EXECUTE</DT
><DD
><P
>       Allows the use of the specified function and the use of any
       operators that are implemented on top of the function.  This is
       the only type of privilege that is applicable to functions.
       (This syntax works for aggregate functions, as well.)
      </P
></DD
><DT
>USAGE</DT
><DD
><P
>       For procedural languages, allows the use of the specified language for
       the creation of functions in that language.  This is the only type
       of privilege that is applicable to procedural languages.
      </P
><P
>       For schemas, allows access to objects contained in the specified
       schema (assuming that the objects' own privilege requirements are
       also met).  Essentially this allows the grantee to <SPAN
CLASS="QUOTE"
>"look up"</SPAN
>
       objects within the schema.  Without this permission, it is still
       possible to see the object names, e.g. by querying the system tables.
       Also, after revoking this permission, existing backends might have
       statements that have previously performed this lookup, so this is not
       a completely secure way to prevent object access.
      </P
><P
>       For sequences, this privilege allows the use of the
       <CODE
CLASS="FUNCTION"
>currval</CODE
> and <CODE
CLASS="FUNCTION"
>nextval</CODE
> functions.
      </P
></DD
><DT
>ALL PRIVILEGES</DT
><DD
><P
>       Grant all of the available privileges at once.
       The <TT
CLASS="LITERAL"
>PRIVILEGES</TT
> key word is optional in
       <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
>, though it is required by
       strict SQL.
      </P
></DD
></DL
></DIV
><P>

   The privileges required by other commands are listed on the
   reference page of the respective command.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="SQL-GRANT-DESCRIPTION-ROLES"
></A
><H3
>GRANT on Roles</H3
><P
>   This variant of the <TT
CLASS="COMMAND"
>GRANT</TT
> command grants membership
   in a role to one or more other roles.  Membership in a role is significant
   because it conveys the privileges granted to a role to each of its
   members.
  </P
><P
>   If <TT
CLASS="LITERAL"
>WITH ADMIN OPTION</TT
> is specified, the member can
   in turn grant membership in the role to others, and revoke membership
   in the role as well.  Without the admin option, ordinary users cannot do
   that.  However,
   database superusers can grant or revoke membership in any role to anyone.
   Roles having <TT
CLASS="LITERAL"
>CREATEROLE</TT
> privilege can grant or revoke
   membership in any role that is not a superuser.
  </P
><P
>   Unlike the case with privileges, membership in a role cannot be granted
   to <TT
CLASS="LITERAL"
>PUBLIC</TT
>.  Note also that this form of the command does not
   allow the noise word <TT
CLASS="LITERAL"
>GROUP</TT
>.
  </P
></DIV
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="SQL-GRANT-NOTES"
></A
><H2
>Notes</H2
><P
>    The <A
HREF="sql-revoke.html"
><I
>REVOKE</I
></A
> command is used
    to revoke access privileges.
   </P
><P
>    When a non-owner of an object attempts to <TT
CLASS="COMMAND"
>GRANT</TT
> privileges
    on the object, the command will fail outright if the user has no
    privileges whatsoever on the object.  As long as some privilege is
    available, the command will proceed, but it will grant only those
    privileges for which the user has grant options.  The <TT
CLASS="COMMAND"
>GRANT ALL
    PRIVILEGES</TT
> forms will issue a warning message if no grant options are
    held, while the other forms will issue a warning if grant options for
    any of the privileges specifically named in the command are not held.
    (In principle these statements apply to the object owner as well, but
    since the owner is always treated as holding all grant options, the
    cases can never occur.)
   </P
><P
>    It should be noted that database superusers can access
    all objects regardless of object privilege settings.  This
    is comparable to the rights of <TT
CLASS="LITERAL"
>root</TT
> in a Unix system.
    As with <TT
CLASS="LITERAL"
>root</TT
>, it's unwise to operate as a superuser
    except when absolutely necessary.
   </P
><P
>    If a superuser chooses to issue a <TT
CLASS="COMMAND"
>GRANT</TT
> or <TT
CLASS="COMMAND"
>REVOKE</TT
>
    command, the command is performed as though it were issued by the
    owner of the affected object.  In particular, privileges granted via
    such a command will appear to have been granted by the object owner.
    (For role membership, the membership appears to have been granted
    by the containing role itself.)
   </P
><P
>    <TT
CLASS="COMMAND"
>GRANT</TT
> and <TT
CLASS="COMMAND"
>REVOKE</TT
> can also be done by a role
    that is not the owner of the affected object, but is a member of the role
    that owns the object, or is a member of a role that holds privileges
    <TT
CLASS="LITERAL"
>WITH GRANT OPTION</TT
> on the object.  In this case the
    privileges will be recorded as having been granted by the role that
    actually owns the object or holds the privileges
    <TT
CLASS="LITERAL"
>WITH GRANT OPTION</TT
>.  For example, if table
    <TT
CLASS="LITERAL"
>t1</TT
> is owned by role <TT
CLASS="LITERAL"
>g1</TT
>, of which role
    <TT
CLASS="LITERAL"
>u1</TT
> is a member, then <TT
CLASS="LITERAL"
>u1</TT
> can grant privileges
    on <TT
CLASS="LITERAL"
>t1</TT
> to <TT
CLASS="LITERAL"
>u2</TT
>, but those privileges will appear
    to have been granted directly by <TT
CLASS="LITERAL"
>g1</TT
>.  Any other member
    of role <TT
CLASS="LITERAL"
>g1</TT
> could revoke them later.
   </P
><P
>    If the role executing <TT
CLASS="COMMAND"
>GRANT</TT
> holds the required privileges
    indirectly via more than one role membership path, it is unspecified
    which containing role will be recorded as having done the grant.  In such
    cases it is best practice to use <TT
CLASS="COMMAND"
>SET ROLE</TT
> to become the
    specific role you want to do the <TT
CLASS="COMMAND"
>GRANT</TT
> as.
   </P
><P
>    Granting permission on a table does not automatically extend 
    permissions to any sequences used by the table, including 
    sequences tied to <TT
CLASS="TYPE"
>SERIAL</TT
> columns.  Permissions on 
    sequence must be set separately.
   </P
><P
>    Currently, <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> does not support
    granting or revoking privileges for individual columns of a table.
    One possible workaround is to create a view having just the desired
    columns and then grant privileges to that view.
   </P
><P
>    Use <A
HREF="app-psql.html"
><SPAN
CLASS="APPLICATION"
>psql</SPAN
></A
>'s <TT
CLASS="COMMAND"
>\z</TT
> command
    to obtain information about existing privileges, for example:
</P><PRE
CLASS="PROGRAMLISTING"
>=&gt; \z mytable
                  Access privileges for database "lusitania"
 Schema |  Name   | Type  |                 Access privileges                 
--------+---------+-------+---------------------------------------------------
 public | mytable | table | {miriam=arwdxt/miriam,=r/miriam,admin=arw/miriam}
(1 row)</PRE
><P>
    The entries shown by <TT
CLASS="COMMAND"
>\z</TT
> are interpreted thus:
</P><PRE
CLASS="PROGRAMLISTING"
>      rolename=xxxx -- privileges granted to a role
              =xxxx -- privileges granted to PUBLIC

                  r -- SELECT ("read")
                  w -- UPDATE ("write")
                  a -- INSERT ("append")
                  d -- DELETE
                  x -- REFERENCES
                  t -- TRIGGER
                  X -- EXECUTE
                  U -- USAGE
                  C -- CREATE
                  c -- CONNECT
                  T -- TEMPORARY
             arwdxt -- ALL PRIVILEGES (for tables)
                  * -- grant option for preceding privilege

              /yyyy -- role that granted this privilege</PRE
><P>

    The above example display would be seen by user <TT
CLASS="LITERAL"
>miriam</TT
> after
    creating table <TT
CLASS="LITERAL"
>mytable</TT
> and doing:

</P><PRE
CLASS="PROGRAMLISTING"
>GRANT SELECT ON mytable TO PUBLIC;
GRANT SELECT, UPDATE, INSERT ON mytable TO admin;</PRE
><P>
   </P
><P
>    If the <SPAN
CLASS="QUOTE"
>"Access privileges"</SPAN
> column is empty for a given object,
    it means the object has default privileges (that is, its privileges column
    is null).  Default privileges always include all privileges for the owner,
    and can include some privileges for <TT
CLASS="LITERAL"
>PUBLIC</TT
> depending on the
    object type, as explained above.  The first <TT
CLASS="COMMAND"
>GRANT</TT
> or
    <TT
CLASS="COMMAND"
>REVOKE</TT
> on an object
    will instantiate the default privileges (producing, for example,
    <TT
CLASS="LITERAL"
>{miriam=arwdxt/miriam}</TT
>) and then modify them per the
    specified request.
   </P
><P
>    Notice that the owner's implicit grant options are not marked in the
    access privileges display.  A <TT
CLASS="LITERAL"
>*</TT
> will appear only when
    grant options have been explicitly granted to someone.
   </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="SQL-GRANT-EXAMPLES"
></A
><H2
>Examples</H2
><P
>   Grant insert privilege to all users on table <TT
CLASS="LITERAL"
>films</TT
>:

</P><PRE
CLASS="PROGRAMLISTING"
>GRANT INSERT ON films TO PUBLIC;</PRE
><P>
  </P
><P
>   Grant all available privileges to user <TT
CLASS="LITERAL"
>manuel</TT
> on view
   <TT
CLASS="LITERAL"
>kinds</TT
>:

</P><PRE
CLASS="PROGRAMLISTING"
>GRANT ALL PRIVILEGES ON kinds TO manuel;</PRE
><P>

   Note that while the above will indeed grant all privileges if executed by a
   superuser or the owner of <TT
CLASS="LITERAL"
>kinds</TT
>, when executed by someone
   else it will only grant those permissions for which the someone else has
   grant options.
  </P
><P
>   Grant membership in role <TT
CLASS="LITERAL"
>admins</TT
> to user <TT
CLASS="LITERAL"
>joe</TT
>:

</P><PRE
CLASS="PROGRAMLISTING"
>GRANT admins TO joe;</PRE
><P>
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="SQL-GRANT-COMPATIBILITY"
></A
><H2
>Compatibility</H2
><P
>    According to the SQL standard, the <TT
CLASS="LITERAL"
>PRIVILEGES</TT
>
    key word in <TT
CLASS="LITERAL"
>ALL PRIVILEGES</TT
> is required.  The
    SQL standard does not support setting the privileges on more than
    one object per command.
   </P
><P
>    <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> allows an object owner to revoke his
    own ordinary privileges: for example, a table owner can make the table
    read-only to himself by revoking his own INSERT, UPDATE, and DELETE
    privileges.  This is not possible according to the SQL standard.  The
    reason is that <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> treats the owner's
    privileges as having been granted by the owner to himself; therefore he
    can revoke them too.  In the SQL standard, the owner's privileges are
    granted by an assumed entity <SPAN
CLASS="QUOTE"
>"_SYSTEM"</SPAN
>.  Not being
    <SPAN
CLASS="QUOTE"
>"_SYSTEM"</SPAN
>, the owner cannot revoke these rights.
   </P
><P
>    <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> does not support the SQL-standard 
    functionality of setting privileges for individual columns.
   </P
><P
>    The SQL standard provides for a <TT
CLASS="LITERAL"
>USAGE</TT
> privilege
    on other kinds of objects: character sets, collations,
    translations, domains.
   </P
><P
>    Privileges on databases, tablespaces, schemas, and languages are
    <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> extensions.
   </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN58165"
></A
><H2
>See Also</H2
><P
>   <A
HREF="sql-revoke.html"
><I
>REVOKE</I
></A
>
  </P
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="sql-fetch.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="sql-insert.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>FETCH</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="sql-commands.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>INSERT</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>