Sophie

Sophie

distrib > Mageia > 6 > x86_64 > media > core-updates > by-pkgid > 28c251aa384f373fb037135d1f7f0b9e > files > 870

postgresql9.6-docs-9.6.15-1.mga6.noarch.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 9.6.15 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="IMPORT FOREIGN SCHEMA"
HREF="sql-importforeignschema.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="2019-08-11T16:06:51"></HEAD
><BODY
CLASS="REFENTRY"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="4"
ALIGN="center"
VALIGN="bottom"
><A
HREF="index.html"
>PostgreSQL 9.6.15 Documentation</A
></TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
TITLE="FETCH"
HREF="sql-fetch.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="sql-commands.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="60%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="20%"
ALIGN="right"
VALIGN="top"
><A
TITLE="IMPORT FOREIGN SCHEMA"
HREF="sql-importforeignschema.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="AEN88543"
></A
><H2
>Name</H2
>GRANT&nbsp;--&nbsp;define access privileges</DIV
><DIV
CLASS="REFSYNOPSISDIV"
><A
NAME="AEN88546"
></A
><H2
>Synopsis</H2
><PRE
CLASS="SYNOPSIS"
>GRANT { { SELECT | INSERT | UPDATE | DELETE | TRUNCATE | REFERENCES | TRIGGER }
    [, ...] | ALL [ PRIVILEGES ] }
    ON { [ TABLE ] <TT
CLASS="REPLACEABLE"
><I
>table_name</I
></TT
> [, ...]
         | ALL TABLES IN SCHEMA <TT
CLASS="REPLACEABLE"
><I
>schema_name</I
></TT
> [, ...] }
    TO <TT
CLASS="REPLACEABLE"
><I
>role_specification</I
></TT
> [, ...] [ WITH GRANT OPTION ]

GRANT { { SELECT | INSERT | UPDATE | REFERENCES } ( <TT
CLASS="REPLACEABLE"
><I
>column_name</I
></TT
> [, ...] )
    [, ...] | ALL [ PRIVILEGES ] ( <TT
CLASS="REPLACEABLE"
><I
>column_name</I
></TT
> [, ...] ) }
    ON [ TABLE ] <TT
CLASS="REPLACEABLE"
><I
>table_name</I
></TT
> [, ...]
    TO <TT
CLASS="REPLACEABLE"
><I
>role_specification</I
></TT
> [, ...] [ WITH GRANT OPTION ]

GRANT { { USAGE | SELECT | UPDATE }
    [, ...] | ALL [ PRIVILEGES ] }
    ON { SEQUENCE <TT
CLASS="REPLACEABLE"
><I
>sequence_name</I
></TT
> [, ...]
         | ALL SEQUENCES IN SCHEMA <TT
CLASS="REPLACEABLE"
><I
>schema_name</I
></TT
> [, ...] }
    TO <TT
CLASS="REPLACEABLE"
><I
>role_specification</I
></TT
> [, ...] [ WITH GRANT OPTION ]

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

GRANT { USAGE | ALL [ PRIVILEGES ] }
    ON DOMAIN <TT
CLASS="REPLACEABLE"
><I
>domain_name</I
></TT
> [, ...]
    TO <TT
CLASS="REPLACEABLE"
><I
>role_specification</I
></TT
> [, ...] [ WITH GRANT OPTION ]

GRANT { USAGE | ALL [ PRIVILEGES ] }
    ON FOREIGN DATA WRAPPER <TT
CLASS="REPLACEABLE"
><I
>fdw_name</I
></TT
> [, ...]
    TO <TT
CLASS="REPLACEABLE"
><I
>role_specification</I
></TT
> [, ...] [ WITH GRANT OPTION ]

GRANT { USAGE | ALL [ PRIVILEGES ] }
    ON FOREIGN SERVER <TT
CLASS="REPLACEABLE"
><I
>server_name</I
></TT
> [, ...]
    TO <TT
CLASS="REPLACEABLE"
><I
>role_specification</I
></TT
> [, ...] [ WITH GRANT OPTION ]

GRANT { EXECUTE | ALL [ PRIVILEGES ] }
    ON { FUNCTION <TT
CLASS="REPLACEABLE"
><I
>function_name</I
></TT
> ( [ [ <TT
CLASS="REPLACEABLE"
><I
>argmode</I
></TT
> ] [ <TT
CLASS="REPLACEABLE"
><I
>arg_name</I
></TT
> ] <TT
CLASS="REPLACEABLE"
><I
>arg_type</I
></TT
> [, ...] ] ) [, ...]
         | ALL FUNCTIONS IN SCHEMA <TT
CLASS="REPLACEABLE"
><I
>schema_name</I
></TT
> [, ...] }
    TO <TT
CLASS="REPLACEABLE"
><I
>role_specification</I
></TT
> [, ...] [ WITH GRANT OPTION ]

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

GRANT { { SELECT | UPDATE } [, ...] | ALL [ PRIVILEGES ] }
    ON LARGE OBJECT <TT
CLASS="REPLACEABLE"
><I
>loid</I
></TT
> [, ...]
    TO <TT
CLASS="REPLACEABLE"
><I
>role_specification</I
></TT
> [, ...] [ WITH GRANT OPTION ]

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

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

GRANT { USAGE | ALL [ PRIVILEGES ] }
    ON TYPE <TT
CLASS="REPLACEABLE"
><I
>type_name</I
></TT
> [, ...]
    TO <TT
CLASS="REPLACEABLE"
><I
>role_specification</I
></TT
> [, ...] [ WITH GRANT OPTION ]

<SPAN
CLASS="phrase"
><SPAN
CLASS="PHRASE"
>where <TT
CLASS="REPLACEABLE"
><I
>role_specification</I
></TT
> can be:</SPAN
></SPAN
>

    [ GROUP ] <TT
CLASS="REPLACEABLE"
><I
>role_name</I
></TT
>
  | PUBLIC
  | CURRENT_USER
  | SESSION_USER

GRANT <TT
CLASS="REPLACEABLE"
><I
>role_name</I
></TT
> [, ...] TO <TT
CLASS="REPLACEABLE"
><I
>role_name</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, column, view, foreign
   table, sequence, database, foreign-data wrapper, foreign server, 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
><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
>   There is also an option to grant privileges on all objects of the same
   type within one or more schemas.  This functionality is currently supported
   only for tables, sequences, and functions (but note that <TT
CLASS="LITERAL"
>ALL
   TABLES</TT
> is considered to include views and foreign tables).
  </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 their own privileges for safety.)
  </P
><P
>   The right to drop an object, or to alter its definition in any way, is
   not treated as a grantable privilege; it is inherent in the owner,
   and cannot be granted or revoked.  (However, a similar effect can be
   obtained by granting or revoking membership in the role that owns
   the object; see below.)  The owner implicitly has all grant
   options for the object, too.
  </P
><P
>   PostgreSQL grants default privileges on some types of objects to
   <TT
CLASS="LITERAL"
>PUBLIC</TT
>.  No privileges are granted to
   <TT
CLASS="LITERAL"
>PUBLIC</TT
> by default on
   tables,
   table columns,
   sequences,
   foreign data wrappers,
   foreign servers,
   large objects,
   schemas,
   or tablespaces.
   For other types of objects, the default privileges
   granted to <TT
CLASS="LITERAL"
>PUBLIC</TT
> are as follows:
   <TT
CLASS="LITERAL"
>CONNECT</TT
> and <TT
CLASS="LITERAL"
>TEMPORARY</TT
> (create
   temporary tables) privileges for databases;
   <TT
CLASS="LITERAL"
>EXECUTE</TT
> privilege for functions; and
   <TT
CLASS="LITERAL"
>USAGE</TT
> privilege for languages and data types
   (including domains).
   The object owner can, of course, <TT
CLASS="COMMAND"
>REVOKE</TT
>
   both default and  expressly granted 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.)
   Also, these initial default privilege settings can be changed using the
   <A
HREF="sql-alterdefaultprivileges.html"
>ALTER DEFAULT PRIVILEGES</A
>
   command.
  </P
><P
>   The possible privileges are:

   <P
></P
></P><DIV
CLASS="VARIABLELIST"
><DL
><DT
>SELECT</DT
><DD
><P
>       Allows <A
HREF="sql-select.html"
>SELECT</A
> from
       any column, or the specific columns listed, of the specified table,
       view, or sequence.
       Also allows the use of
       <A
HREF="sql-copy.html"
>COPY</A
> TO.
       This privilege is also needed to reference existing column values in
       <A
HREF="sql-update.html"
>UPDATE</A
> or
       <A
HREF="sql-delete.html"
>DELETE</A
>.
       For sequences, this privilege also allows the use of the
       <CODE
CLASS="FUNCTION"
>currval</CODE
> function.
       For large objects, this privilege allows the object to be read.
      </P
></DD
><DT
>INSERT</DT
><DD
><P
>       Allows <A
HREF="sql-insert.html"
>INSERT</A
> of a new
       row into the specified table.  If specific columns are listed,
       only those columns may be assigned to in the <TT
CLASS="COMMAND"
>INSERT</TT
>
       command (other columns will therefore receive default values).
       Also allows <A
HREF="sql-copy.html"
>COPY</A
> FROM.
      </P
></DD
><DT
>UPDATE</DT
><DD
><P
>       Allows <A
HREF="sql-update.html"
>UPDATE</A
> of any
       column, or the specific columns listed, 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 on at least one column, 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.
       For large objects, this privilege allows writing or truncating the
       object.
      </P
></DD
><DT
>DELETE</DT
><DD
><P
>       Allows <A
HREF="sql-delete.html"
>DELETE</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
>TRUNCATE</DT
><DD
><P
>       Allows <A
HREF="sql-truncate.html"
>TRUNCATE</A
> on
       the specified table.
      </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 columns.  The privilege may be granted for all columns
       of a table, or just specific columns.
      </P
></DD
><DT
>TRIGGER</DT
><DD
><P
>       Allows the creation of a trigger on the specified table.  (See the
       <A
HREF="sql-createtrigger.html"
>CREATE TRIGGER</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
><P
>       For types and domains, this privilege allow the use of the type or
       domain in the creation of tables, functions, and other schema objects.
       (Note that it does not control general <SPAN
CLASS="QUOTE"
>"usage"</SPAN
> of the type,
       such as values of the type appearing in queries.  It only prevents
       objects from being created that depend on the type.  The main purpose of
       the privilege is controlling which users create dependencies on a type,
       which could prevent the owner from changing the type later.)
      </P
><P
>       For foreign-data wrappers, this privilege enables the grantee
       to create new servers using that foreign-data wrapper.
      </P
><P
>       For servers, this privilege enables the grantee to create foreign
       tables using the server, and also to create, alter, or drop their own
       user's user mappings associated with that server.
      </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.  A role is not considered to hold <TT
CLASS="LITERAL"
>WITH ADMIN
   OPTION</TT
> on itself, but it may grant or revoke membership in
   itself from a database session where the session user matches the
   role.  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"
>REVOKE</A
> command is used
    to revoke access privileges.
   </P
><P
>    Since <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
><P
>    A user may perform <TT
CLASS="COMMAND"
>SELECT</TT
>, <TT
CLASS="COMMAND"
>INSERT</TT
>, etc. on a
    column if they hold that privilege for either the specific column or
    its whole table.  Granting the privilege at the table level and then
    revoking it for one column will not do what one might wish: the
    table-level grant is unaffected by a column-level operation.
   </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
    sequences must be set separately.
   </P
><P
>    Use <A
HREF="app-psql.html"
><SPAN
CLASS="APPLICATION"
>psql</SPAN
></A
>'s <TT
CLASS="COMMAND"
>\dp</TT
> command
    to obtain information about existing privileges for tables and
    columns.  For example:
</P><PRE
CLASS="PROGRAMLISTING"
>=&gt; \dp mytable
                              Access privileges
 Schema |  Name   | Type  |   Access privileges   | Column access privileges 
--------+---------+-------+-----------------------+--------------------------
 public | mytable | table | miriam=arwdDxt/miriam | col1:
                          : =r/miriam             :   miriam_rw=rw/miriam
                          : admin=arw/miriam        
(1 row)</PRE
><P>
    The entries shown by <TT
CLASS="COMMAND"
>\dp</TT
> are interpreted thus:
</P><PRE
CLASS="LITERALLAYOUT"
>rolename=xxxx -- privileges granted to a role
        =xxxx -- privileges granted to PUBLIC

            r -- SELECT ("read")
            w -- UPDATE ("write")
            a -- INSERT ("append")
            d -- DELETE
            D -- TRUNCATE
            x -- REFERENCES
            t -- TRIGGER
            X -- EXECUTE
            U -- USAGE
            C -- CREATE
            c -- CONNECT
            T -- TEMPORARY
      arwdDxt -- ALL PRIVILEGES (for tables, varies for other objects)
            * -- 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;
GRANT SELECT (col1), UPDATE (col1) ON mytable TO miriam_rw;</PRE
><P>
   </P
><P
>    For non-table objects there are other <TT
CLASS="COMMAND"
>\d</TT
> commands
    that can display their privileges.
   </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=arwdDxt/miriam}</TT
>) and then modify them per the
    specified request.  Similarly, entries are shown in <SPAN
CLASS="QUOTE"
>"Column access
    privileges"</SPAN
> only for columns with nondefault privileges.
    (Note: for this purpose, <SPAN
CLASS="QUOTE"
>"default privileges"</SPAN
> always means the
    built-in default privileges for the object's type.  An object whose
    privileges have been affected by an <TT
CLASS="COMMAND"
>ALTER DEFAULT PRIVILEGES</TT
>
    command will always be shown with an explicit privilege entry that
    includes the effects of the <TT
CLASS="COMMAND"
>ALTER</TT
>.)
   </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 their
    own ordinary privileges: for example, a table owner can make the table
    read-only to themselves by revoking their own <TT
CLASS="LITERAL"
>INSERT</TT
>,
    <TT
CLASS="LITERAL"
>UPDATE</TT
>, <TT
CLASS="LITERAL"
>DELETE</TT
>, and <TT
CLASS="LITERAL"
>TRUNCATE</TT
>
    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 themselves; therefore they
    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
>    According to the SQL standard, grant options can be granted to
    <TT
CLASS="LITERAL"
>PUBLIC</TT
>; PostgreSQL only supports granting grant options
    to roles.
   </P
><P
>    The SQL standard provides for a <TT
CLASS="LITERAL"
>USAGE</TT
> privilege
    on other kinds of objects: character sets, collations,
    translations.
   </P
><P
>    In the SQL standard, sequences only have a <TT
CLASS="LITERAL"
>USAGE</TT
>
    privilege, which controls the use of the <TT
CLASS="LITERAL"
>NEXT VALUE FOR</TT
>
    expression, which is equivalent to the
    function <CODE
CLASS="FUNCTION"
>nextval</CODE
> in PostgreSQL.  The sequence
    privileges <TT
CLASS="LITERAL"
>SELECT</TT
> and <TT
CLASS="LITERAL"
>UPDATE</TT
> are
    PostgreSQL extensions.  The application of the
    sequence <TT
CLASS="LITERAL"
>USAGE</TT
> privilege to
    the <TT
CLASS="LITERAL"
>currval</TT
> function is also a PostgreSQL extension (as
    is the function itself).
   </P
><P
>    Privileges on databases, tablespaces, schemas, and languages are
    <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> extensions.
   </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN88823"
></A
><H2
>See Also</H2
><A
HREF="sql-revoke.html"
>REVOKE</A
>, <A
HREF="sql-alterdefaultprivileges.html"
>ALTER DEFAULT PRIVILEGES</A
></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-importforeignschema.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"
>IMPORT FOREIGN SCHEMA</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>