3 .\" Author: The PostgreSQL Global Development Group
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
6 .\" Manual: PostgreSQL 18.0 Documentation
7 .\" Source: PostgreSQL 18.0
10 .TH "GRANT" "7" "2025" "PostgreSQL 18.0" "PostgreSQL 18.0 Documentation"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
25 .\" disable justification (adjust text to left margin only)
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
31 GRANT \- define access privileges
35 GRANT { { SELECT | INSERT | UPDATE | DELETE | TRUNCATE | REFERENCES | TRIGGER | MAINTAIN }
36 [, \&.\&.\&.] | ALL [ PRIVILEGES ] }
37 ON { [ TABLE ] \fItable_name\fR [, \&.\&.\&.]
38 | ALL TABLES IN SCHEMA \fIschema_name\fR [, \&.\&.\&.] }
39 TO \fIrole_specification\fR [, \&.\&.\&.] [ WITH GRANT OPTION ]
40 [ GRANTED BY \fIrole_specification\fR ]
42 GRANT { { SELECT | INSERT | UPDATE | REFERENCES } ( \fIcolumn_name\fR [, \&.\&.\&.] )
43 [, \&.\&.\&.] | ALL [ PRIVILEGES ] ( \fIcolumn_name\fR [, \&.\&.\&.] ) }
44 ON [ TABLE ] \fItable_name\fR [, \&.\&.\&.]
45 TO \fIrole_specification\fR [, \&.\&.\&.] [ WITH GRANT OPTION ]
46 [ GRANTED BY \fIrole_specification\fR ]
48 GRANT { { USAGE | SELECT | UPDATE }
49 [, \&.\&.\&.] | ALL [ PRIVILEGES ] }
50 ON { SEQUENCE \fIsequence_name\fR [, \&.\&.\&.]
51 | ALL SEQUENCES IN SCHEMA \fIschema_name\fR [, \&.\&.\&.] }
52 TO \fIrole_specification\fR [, \&.\&.\&.] [ WITH GRANT OPTION ]
53 [ GRANTED BY \fIrole_specification\fR ]
55 GRANT { { CREATE | CONNECT | TEMPORARY | TEMP } [, \&.\&.\&.] | ALL [ PRIVILEGES ] }
56 ON DATABASE \fIdatabase_name\fR [, \&.\&.\&.]
57 TO \fIrole_specification\fR [, \&.\&.\&.] [ WITH GRANT OPTION ]
58 [ GRANTED BY \fIrole_specification\fR ]
60 GRANT { USAGE | ALL [ PRIVILEGES ] }
61 ON DOMAIN \fIdomain_name\fR [, \&.\&.\&.]
62 TO \fIrole_specification\fR [, \&.\&.\&.] [ WITH GRANT OPTION ]
63 [ GRANTED BY \fIrole_specification\fR ]
65 GRANT { USAGE | ALL [ PRIVILEGES ] }
66 ON FOREIGN DATA WRAPPER \fIfdw_name\fR [, \&.\&.\&.]
67 TO \fIrole_specification\fR [, \&.\&.\&.] [ WITH GRANT OPTION ]
68 [ GRANTED BY \fIrole_specification\fR ]
70 GRANT { USAGE | ALL [ PRIVILEGES ] }
71 ON FOREIGN SERVER \fIserver_name\fR [, \&.\&.\&.]
72 TO \fIrole_specification\fR [, \&.\&.\&.] [ WITH GRANT OPTION ]
73 [ GRANTED BY \fIrole_specification\fR ]
75 GRANT { EXECUTE | ALL [ PRIVILEGES ] }
76 ON { { FUNCTION | PROCEDURE | ROUTINE } \fIroutine_name\fR [ ( [ [ \fIargmode\fR ] [ \fIarg_name\fR ] \fIarg_type\fR [, \&.\&.\&.] ] ) ] [, \&.\&.\&.]
77 | ALL { FUNCTIONS | PROCEDURES | ROUTINES } IN SCHEMA \fIschema_name\fR [, \&.\&.\&.] }
78 TO \fIrole_specification\fR [, \&.\&.\&.] [ WITH GRANT OPTION ]
79 [ GRANTED BY \fIrole_specification\fR ]
81 GRANT { USAGE | ALL [ PRIVILEGES ] }
82 ON LANGUAGE \fIlang_name\fR [, \&.\&.\&.]
83 TO \fIrole_specification\fR [, \&.\&.\&.] [ WITH GRANT OPTION ]
84 [ GRANTED BY \fIrole_specification\fR ]
86 GRANT { { SELECT | UPDATE } [, \&.\&.\&.] | ALL [ PRIVILEGES ] }
87 ON LARGE OBJECT \fIloid\fR [, \&.\&.\&.]
88 TO \fIrole_specification\fR [, \&.\&.\&.] [ WITH GRANT OPTION ]
89 [ GRANTED BY \fIrole_specification\fR ]
91 GRANT { { SET | ALTER SYSTEM } [, \&.\&.\&. ] | ALL [ PRIVILEGES ] }
92 ON PARAMETER \fIconfiguration_parameter\fR [, \&.\&.\&.]
93 TO \fIrole_specification\fR [, \&.\&.\&.] [ WITH GRANT OPTION ]
94 [ GRANTED BY \fIrole_specification\fR ]
96 GRANT { { CREATE | USAGE } [, \&.\&.\&.] | ALL [ PRIVILEGES ] }
97 ON SCHEMA \fIschema_name\fR [, \&.\&.\&.]
98 TO \fIrole_specification\fR [, \&.\&.\&.] [ WITH GRANT OPTION ]
99 [ GRANTED BY \fIrole_specification\fR ]
101 GRANT { CREATE | ALL [ PRIVILEGES ] }
102 ON TABLESPACE \fItablespace_name\fR [, \&.\&.\&.]
103 TO \fIrole_specification\fR [, \&.\&.\&.] [ WITH GRANT OPTION ]
104 [ GRANTED BY \fIrole_specification\fR ]
106 GRANT { USAGE | ALL [ PRIVILEGES ] }
107 ON TYPE \fItype_name\fR [, \&.\&.\&.]
108 TO \fIrole_specification\fR [, \&.\&.\&.] [ WITH GRANT OPTION ]
109 [ GRANTED BY \fIrole_specification\fR ]
111 GRANT \fIrole_name\fR [, \&.\&.\&.] TO \fIrole_specification\fR [, \&.\&.\&.]
112 [ WITH { ADMIN | INHERIT | SET } { OPTION | TRUE | FALSE } ]
113 [ GRANTED BY \fIrole_specification\fR ]
115 where \fIrole_specification\fR can be:
117 [ GROUP ] \fIrole_name\fR
127 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, procedure, procedural language, large object, configuration parameter, schema, tablespace, or type), and one that grants membership in a role\&. These variants are similar in many ways, but they are different enough to be described separately\&.
128 .SS "GRANT on Database Objects"
132 command gives specific privileges on a database object to one or more roles\&. These privileges are added to those already granted, if any\&.
136 indicates that the privileges are to be granted to all roles, including those that might be created later\&.
138 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
143 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
148 is specified, the specified grantor must be the current user\&. This clause is currently present in this form only for SQL compatibility\&.
150 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\&.)
152 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\&.
154 The possible privileges are:
186 Specific types of privileges, as defined in
192 Alternative spelling for
198 Grant all of the privileges available for the object\*(Aqs type\&. The
200 key word is optional in
201 PostgreSQL, though it is required by strict SQL\&.
206 syntax works for plain functions, aggregate functions, and window functions, but not for procedures; use
208 for those\&. Alternatively, use
210 to refer to a function, aggregate function, window function, or procedure regardless of its precise type\&.
212 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, functions, and procedures\&.
214 also affects views and foreign tables, just like the specific\-object
218 also affects aggregate and window functions, but not procedures, again just like the specific\-object
222 to include procedures\&.
227 command grants membership in a role to one or more other roles, and the modification of membership options
232 for details\&. Membership in a role is significant because it potentially allows access to the privileges granted to a role to each of its members, and potentially also the ability to make changes to the role itself\&. However, the actual permissions conferred depend on the options associated with the grant\&. To modify that options of an existing membership, simply specify the membership with updated option values\&.
234 Each of the options described below can be set to either
239 is accepted as a synonym for
243 WITH ADMIN TRUE\&. When altering an existing membership the omission of an option results in the current value being retained\&.
247 option allows the member to 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
249 on itself\&. Database superusers can grant or revoke membership in any role to anyone\&. This option defaults to
254 option controls the inheritance status of the new membership; see
256 for details on inheritance\&. If it is set to
257 TRUE, it causes the new member to inherit from the granted role\&. If set to
258 FALSE, the new member does not inherit\&. If unspecified when creating a new role membership, this defaults to the inheritance attribute of the new member\&.
262 option, if it is set to
263 TRUE, allows the member to change to the granted role using the
265 command\&. If a role is an indirect member of another role, it can use
267 to change to that role only if there is a chain of grants each of which has
268 SET TRUE\&. This option defaults to
271 To create an object owned by another role or give ownership of an existing object to another role, you must have the ability to
273 to that role; otherwise, commands such as
274 ALTER \&.\&.\&. OWNER TO
276 CREATE DATABASE \&.\&.\&. OWNER
277 will fail\&. However, a user who inherits the privileges of a role but does not have the ability to
279 to that role may be able to obtain full access to the role by manipulating existing objects owned by that role (e\&.g\&. they could redefine an existing function to act as a Trojan horse)\&. Therefore, if a role\*(Aqs privileges are to be inherited but should not be accessible via
280 SET ROLE, it should not own any SQL objects\&.
284 is specified, the grant is recorded as having been done by the specified role\&. A user can only attribute a grant to another role if they possess the privileges of that role\&. The role recorded as the grantor must have
286 on the target role, unless it is the bootstrap superuser\&. When a grant is recorded as having a grantor other than the bootstrap superuser, it depends on the grantor continuing to possess
290 is revoked, dependent grants must be revoked as well\&.
292 Unlike the case with privileges, membership in a role cannot be granted to
293 PUBLIC\&. Note also that this form of the command does not allow the noise word
296 \fIrole_specification\fR\&.
301 command is used to revoke access privileges\&.
305 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
307 to identify whether a grantee is a user or a group\&.
309 is still allowed in the command, but it is a noise word\&.
313 \fBINSERT\fR, 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\&.
315 When a non\-owner of an object attempts to
317 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
318 \fBGRANT ALL PRIVILEGES\fR
319 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\&.)
321 It should be noted that database superusers can access all objects regardless of object privilege settings\&. This is comparable to the rights of
323 in a Unix system\&. As with
324 root, it\*(Aqs unwise to operate as a superuser except when absolutely necessary\&.
326 If a superuser chooses to issue a
330 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 bootstrap superuser\&.)
335 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
337 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
338 WITH GRANT OPTION\&. For example, if table
345 can grant privileges on
348 u2, but those privileges will appear to have been granted directly by
349 g1\&. Any other member of role
351 could revoke them later\&.
353 If the role executing
355 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
357 to become the specific role you want to do the
361 Granting permission on a table does not automatically extend permissions to any sequences used by the table, including sequences tied to
363 columns\&. Permissions on sequences must be set separately\&.
367 for more information about specific privilege types, as well as how to inspect objects\*(Aq privileges\&.
370 Grant insert privilege to all users on table
377 GRANT INSERT ON films TO PUBLIC;
383 Grant all available privileges to user
392 GRANT ALL PRIVILEGES ON kinds TO manuel;
398 Note that while the above will indeed grant all privileges if executed by a superuser or the owner of
399 kinds, when executed by someone else it will only grant those permissions for which the someone else has grant options\&.
401 Grant membership in role
417 According to the SQL standard, the
421 is required\&. The SQL standard does not support setting the privileges on more than one object per command\&.
424 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
429 privileges\&. This is not possible according to the SQL standard\&. The reason is that
431 treats the owner\*(Aqs privileges as having been granted by the owner to themselves; therefore they can revoke them too\&. In the SQL standard, the owner\*(Aqs privileges are granted by an assumed entity
432 \(lq_SYSTEM\(rq\&. Not being
433 \(lq_SYSTEM\(rq, the owner cannot revoke these rights\&.
435 According to the SQL standard, grant options can be granted to
436 PUBLIC; PostgreSQL only supports granting grant options to roles\&.
438 The SQL standard allows the
440 option to specify only
443 CURRENT_ROLE\&. The other variants are PostgreSQL extensions\&.
445 The SQL standard provides for a
447 privilege on other kinds of objects: character sets, collations, translations\&.
449 In the SQL standard, sequences only have a
451 privilege, which controls the use of the
453 expression, which is equivalent to the function
455 in PostgreSQL\&. The sequence privileges
459 are PostgreSQL extensions\&. The application of the sequence
463 function is also a PostgreSQL extension (as is the function itself)\&.
465 Privileges on databases, tablespaces, schemas, languages, and configuration parameters are
469 \fBREVOKE\fR(7), ALTER DEFAULT PRIVILEGES (\fBALTER_DEFAULT_PRIVILEGES\fR(7))