File: sql-droprole.html

package info (click to toggle)
pgadmin3 1.4.3-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 29,796 kB
  • ctags: 10,758
  • sloc: cpp: 55,356; sh: 6,164; ansic: 1,520; makefile: 576; sql: 482; xml: 100; perl: 18
file content (77 lines) | stat: -rw-r--r-- 3,389 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>DROP ROLE</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<link rev="made" href="pgsql-docs@postgresql.org">
<meta name="generator" content="DocBook XSL Stylesheets V1.70.0">
<link rel="start" href="index.html" title="PostgreSQL 8.1.4 Documentation">
<link rel="up" href="sql-commands.html" title="SQL Commands">
<link rel="prev" href="sql-dropopclass.html" title="DROP OPERATOR CLASS">
<link rel="next" href="sql-droprule.html" title="DROP RULE">
<link rel="copyright" href="ln-legalnotice.html" title="Legal Notice">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en">
<a name="sql-droprole"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2>Name</h2>
<p>DROP ROLE &#8212; remove a database role</p>
</div>
<a name="id771948"></a><div class="refsynopsisdiv">
<h2>Synopsis</h2>
<pre class="synopsis">DROP ROLE <em class="replaceable"><code>name</code></em> [, ...]</pre>
</div>
<div class="refsect1" lang="en">
<a name="id771972"></a><h2>Description</h2>
<p>   <code class="command">DROP ROLE</code> removes the specified role(s).
   To drop a superuser role, you must be a superuser yourself;
   to drop non-superuser roles, you must have <code class="literal">CREATEROLE</code>
   privilege.
  </p>
<p>   A role cannot be removed if it is still referenced in any database
   of the cluster; an error will be raised if so.  Before dropping the role,
   you must drop all the objects it owns (or reassign their ownership)
   and revoke any privileges the role has been granted.
  </p>
<p>   However, it is not necessary to remove role memberships involving
   the role; <code class="command">DROP ROLE</code> automatically revokes any memberships
   of the target role in other roles, and of other roles in the target role.
   The other roles are not dropped nor otherwise affected.
  </p>
</div>
<div class="refsect1" lang="en">
<a name="id772015"></a><h2>Parameters</h2>
<div class="variablelist"><dl>
<dt><span class="term"><em class="replaceable"><code>name</code></em></span></dt>
<dd><p>      The name of the role to remove.
     </p></dd>
</dl></div>
</div>
<div class="refsect1" lang="en">
<a name="id772032"></a><h2>Notes</h2>
<p>   <span class="productname">PostgreSQL</span> includes a program <a href="app-dropuser.html"><span class="application">dropuser</span></a> that has the
   same functionality as this command (in fact, it calls this command)
   but can be run from the command shell.
  </p>
</div>
<div class="refsect1" lang="en">
<a name="id772060"></a><h2>Examples</h2>
<p>   To drop a role:
</p>
<pre class="programlisting">DROP ROLE jonathan;</pre>
<p>
  </p>
</div>
<div class="refsect1" lang="en">
<a name="id772074"></a><h2>Compatibility</h2>
<p>   The SQL standard defines <code class="command">DROP ROLE</code>, but it allows
   only one role to be dropped at a time, and it specifies different
   privilege requirements than <span class="productname">PostgreSQL</span> uses.
  </p>
</div>
<div class="refsect1" lang="en">
<a name="id772096"></a><h2>See Also</h2>
<span class="simplelist"><a href="sql-createrole.html">CREATE ROLE</a>, <a href="sql-alterrole.html">ALTER ROLE</a>, <a href="sql-set-role.html">SET ROLE</a></span>
</div>
</div></body>
</html>