File: sql-set-session-authorization.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 (94 lines) | stat: -rw-r--r-- 4,449 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>SET SESSION AUTHORIZATION</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-set-role.html" title="SET ROLE">
<link rel="next" href="sql-set-transaction.html" title="SET TRANSACTION">
<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-set-session-authorization"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2>Name</h2>
<p>SET SESSION AUTHORIZATION &#8212; set the session user identifier and the current user identifier of the current session</p>
</div>
<a name="id788353"></a><div class="refsynopsisdiv">
<h2>Synopsis</h2>
<pre class="synopsis">SET [ SESSION | LOCAL ] SESSION AUTHORIZATION <em class="replaceable"><code>username</code></em>
SET [ SESSION | LOCAL ] SESSION AUTHORIZATION DEFAULT
RESET SESSION AUTHORIZATION</pre>
</div>
<div class="refsect1" lang="en">
<a name="id788380"></a><h2>Description</h2>
<p>   This command sets the session user identifier and the current user
   identifier of the current SQL-session context to be <em class="replaceable"><code>username</code></em>.  The user name may be
   written as either an identifier or a string literal.  Using this
   command, it is possible, for example, to temporarily become an
   unprivileged user and later switch back to being a superuser.
  </p>
<p>   The session user identifier is initially set to be the (possibly
   authenticated) user name provided by the client.  The current user
   identifier is normally equal to the session user identifier, but
   may change temporarily in the context of &#8220;<span class="quote">setuid</span>&#8221;
   functions and similar mechanisms; it can also be changed by
   <a href="sql-set-role.html">SET ROLE</a>.
   The current user identifier is relevant for permission checking.
  </p>
<p>   The session user identifier may be changed only if the initial session
   user (the <em class="firstterm">authenticated user</em>) had the
   superuser privilege.  Otherwise, the command is accepted only if it
   specifies the authenticated user name.
  </p>
<p>   The <code class="literal">SESSION</code> and <code class="literal">LOCAL</code> modifiers act the same
   as for the regular <a href="sql-set.html">SET</a>
   command.
  </p>
<p>   The <code class="literal">DEFAULT</code> and <code class="literal">RESET</code> forms reset the session
   and current user identifiers to be the originally authenticated user
   name.  These forms may be executed by any user.
  </p>
</div>
<div class="refsect1" lang="en">
<a name="id788478"></a><h2>Examples</h2>
<pre class="programlisting">SELECT SESSION_USER, CURRENT_USER;

 session_user | current_user 
--------------+--------------
 peter        | peter

SET SESSION AUTHORIZATION 'paul';

SELECT SESSION_USER, CURRENT_USER;

 session_user | current_user 
--------------+--------------
 paul         | paul</pre>
</div>
<div class="refsect1" lang="en">
<a name="id788491"></a><h2>Compatibility</h2>
<p>   The SQL standard allows some other expressions to appear in place
   of the literal <em class="replaceable"><code>username</code></em>, but these options
   are not important in practice.  <span class="productname">PostgreSQL</span>
   allows identifier syntax (<code class="literal">"username"</code>), which SQL
   does not.  SQL does not allow this command during a transaction;
   <span class="productname">PostgreSQL</span> does not make this
   restriction because there is no reason to.
   The <code class="literal">SESSION</code> and <code class="literal">LOCAL</code> modifiers are a
   <span class="productname">PostgreSQL</span> extension, as is the
   <code class="literal">RESET</code> syntax.
  </p>
<p>   The privileges necessary to execute this command are left
   implementation-defined by the standard.
  </p>
</div>
<div class="refsect1" lang="en">
<a name="id788559"></a><h2>See Also</h2>
<span class="simplelist"><a href="sql-set-role.html">SET ROLE</a></span>
</div>
</div></body>
</html>