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
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>ALTER USER</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-altertype.html" title="ALTER TYPE">
<link rel="next" href="sql-analyze.html" title="ANALYZE">
<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-alteruser"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2>Name</h2>
<p>ALTER USER — change a database role</p>
</div>
<a name="id747565"></a><div class="refsynopsisdiv">
<h2>Synopsis</h2>
<pre class="synopsis">ALTER USER <em class="replaceable"><code>name</code></em> [ [ WITH ] <em class="replaceable"><code>option</code></em> [ ... ] ]
where <em class="replaceable"><code>option</code></em> can be:
SUPERUSER | NOSUPERUSER
| CREATEDB | NOCREATEDB
| CREATEROLE | NOCREATEROLE
| CREATEUSER | NOCREATEUSER
| INHERIT | NOINHERIT
| LOGIN | NOLOGIN
| CONNECTION LIMIT <em class="replaceable"><code>connlimit</code></em>
| [ ENCRYPTED | UNENCRYPTED ] PASSWORD '<em class="replaceable"><code>password</code></em>'
| VALID UNTIL '<em class="replaceable"><code>timestamp</code></em>'
ALTER USER <em class="replaceable"><code>name</code></em> RENAME TO <em class="replaceable"><code>newname</code></em>
ALTER USER <em class="replaceable"><code>name</code></em> SET <em class="replaceable"><code>parameter</code></em> { TO | = } { <em class="replaceable"><code>value</code></em> | DEFAULT }
ALTER USER <em class="replaceable"><code>name</code></em> RESET <em class="replaceable"><code>parameter</code></em></pre>
</div>
<div class="refsect1" lang="en">
<a name="id747663"></a><h2>Description</h2>
<p> <code class="command">ALTER USER</code> is now an alias for
<a href="sql-alterrole.html">ALTER ROLE</a>,
which see for more information.
</p>
</div>
<div class="refsect1" lang="en">
<a name="id747688"></a><h2>Compatibility</h2>
<p> The <code class="command">ALTER USER</code> statement is a
<span class="productname">PostgreSQL</span> extension. The SQL standard
leaves the definition of users to the implementation.
</p>
</div>
<div class="refsect1" lang="en">
<a name="id747709"></a><h2>See Also</h2>
<span class="simplelist"><a href="sql-alterrole.html">ALTER ROLE</a></span>
</div>
</div></body>
</html>
|