⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 create_role.sgml

📁 PostgreSQL 8.1.4的源码 适用于Linux下的开源数据库系统
💻 SGML
📖 第 1 页 / 共 2 页
字号:
      <listitem>       <para>        The <literal>IN ROLE</literal> clause lists one or more existing        roles to which the new role will be immediately added as a new        member.  (Note that there is no option to add the new role as an        administrator; use a separate <command>GRANT</> command to do that.)       </para>      </listitem>     </varlistentry>     <varlistentry>      <term><literal>IN GROUP</> <replaceable class="parameter">rolename</replaceable></term>      <listitem>       <para>        <literal>IN GROUP</literal> is an obsolete spelling of        <literal>IN ROLE</>.       </para>      </listitem>     </varlistentry>     <varlistentry>      <term><literal>ROLE</> <replaceable class="parameter">rolename</replaceable></term>      <listitem>       <para>        The <literal>ROLE</literal> clause lists one or more existing        roles which are automatically added as members of the new role.        (This in effect makes the new role a <quote>group</>.)       </para>      </listitem>     </varlistentry>     <varlistentry>      <term><literal>ADMIN</> <replaceable class="parameter">rolename</replaceable></term>      <listitem>       <para>        The <literal>ADMIN</literal> clause is like <literal>ROLE</literal>,        but the named roles are added to the new role <literal>WITH ADMIN        OPTION</>, giving them the right to grant membership in this role        to others.       </para>      </listitem>     </varlistentry>     <varlistentry>      <term><literal>USER</> <replaceable class="parameter">rolename</replaceable></term>      <listitem>       <para>        The <literal>USER</literal> clause is an obsolete spelling of        the <literal>ROLE</> clause.       </para>      </listitem>     </varlistentry>     <varlistentry>      <term><literal>SYSID</> <replaceable class="parameter">uid</replaceable></term>      <listitem>       <para>        The <literal>SYSID</literal> clause is ignored, but is accepted        for backwards compatibility.       </para>      </listitem>     </varlistentry>    </variablelist> </refsect1>  <refsect1>  <title>Notes</title>  <para>   Use <xref linkend="SQL-ALTERROLE" endterm="SQL-ALTERROLE-title"> to   change the attributes of a role, and <xref linkend="SQL-DROPROLE"   endterm="SQL-DROPROLE-title"> to remove a role.  All the attributes   specified by <command>CREATE ROLE</> can be modified by later   <command>ALTER ROLE</> commands.  </para>  <para>   The preferred way to add and remove members of roles that are being   used as groups is to use   <xref linkend="SQL-GRANT" endterm="SQL-GRANT-title"> and   <xref linkend="SQL-REVOKE" endterm="SQL-REVOKE-title">.  </para>  <para>   The <literal>VALID UNTIL</> clause defines an expiration time for a   password only, not for the role <foreignphrase>per se</>.  In   particular, the expiration time is not enforced when logging in using   a non-password-based authentication method.  </para>  <para>   The <literal>INHERIT</> attribute governs inheritance of grantable   privileges (that is, access privileges for database objects and role   memberships).  It does not apply to the special role attributes set by   <command>CREATE ROLE</> and <command>ALTER ROLE</>.  For example, being   a member of a role with <literal>CREATEDB</> privilege does not immediately   grant the ability to create databases, even if <literal>INHERIT</> is set;   it would be necessary to become that role via   <xref linkend="SQL-SET-ROLE" endterm="SQL-SET-ROLE-title"> before   creating a database.  </para>  <para>   The <literal>INHERIT</> attribute is the default for reasons of backwards   compatibility: in prior releases of <productname>PostgreSQL</productname>,   users always had access to all privileges of groups they were members of.   However, <literal>NOINHERIT</> provides a closer match to the semantics   specified in the SQL standard.  </para>  <para>   Be careful with the <literal>CREATEROLE</> privilege. There is no concept of   inheritance for the privileges of a <literal>CREATEROLE</>-role. That   means that even if a role does not have a certain privilege but is allowed   to create other roles, it can easily create another role with different   privileges than its own (except for creating roles with superuser   privileges). For example, if the role <quote>user</> has the   <literal>CREATEROLE</> privilege but not the <literal>CREATEDB</> privilege,   nonetheless it can create a new role with the <literal>CREATEDB</>   privilege. Therefore, regard roles that have the <literal>CREATEROLE</>   privilege as almost-superuser-roles.  </para>  <para>   <productname>PostgreSQL</productname> includes a program <xref   linkend="APP-CREATEUSER" endterm="APP-CREATEUSER-title"> that has   the same functionality as <command>CREATE ROLE</command> (in fact,   it calls this command) but can be run from the command shell.  </para>  <para>   The <literal>CONNECTION LIMIT</> option is only enforced approximately;   if two new sessions start at about the same time when just one   connection <quote>slot</> remains for the role, it is possible that   both will fail.  Also, the limit is never enforced for superusers.  </para> </refsect1> <refsect1>  <title>Examples</title>  <para>   Create a role that can log in, but don't give it a password:<programlisting>CREATE ROLE jonathan LOGIN;</programlisting>  </para>  <para>   Create a role with a password:<programlisting>CREATE USER davide WITH PASSWORD 'jw8s0F4';</programlisting>   (<command>CREATE USER</> is the same as <command>CREATE ROLE</> except   that it implies <literal>LOGIN</>.)  </para>  <para>   Create a role with a password that is valid until the end of 2004.   After one second has ticked in 2005, the password is no longer   valid.<programlisting>CREATE ROLE miriam WITH LOGIN PASSWORD 'jw8s0F4' VALID UNTIL '2005-01-01';</programlisting>  </para>  <para>    Create a role that can create databases and manage roles:<programlisting>CREATE ROLE admin WITH CREATEDB CREATEROLE;</programlisting>  </para> </refsect1>  <refsect1>  <title>Compatibility</title>  <para>   The <command>CREATE ROLE</command> statement is in the SQL standard,   but the standard only requires the syntax<synopsis>CREATE ROLE <replaceable class="PARAMETER">name</> [ WITH ADMIN <replaceable class="PARAMETER">rolename</> ]</synopsis>   Multiple initial administrators, and all the other options of   <command>CREATE ROLE</command>, are   <productname>PostgreSQL</productname> extensions.  </para>    <para>   The SQL standard defines the concepts of users and roles, but it   regards them as distinct concepts and leaves all commands defining   users to be specified by each database implementation.  In   <productname>PostgreSQL</productname> we have chosen to unify   users and roles into a single kind of entity.  Roles therefore   have many more optional attributes than they do in the standard.  </para>  <para>   The behavior specified by the SQL standard is most closely approximated   by giving users the <literal>NOINHERIT</> attribute, while roles are   given the <literal>INHERIT</> attribute.  </para> </refsect1> <refsect1>  <title>See Also</title>  <simplelist type="inline">   <member><xref linkend="sql-set-role" endterm="sql-set-role-title"></member>   <member><xref linkend="sql-alterrole" endterm="sql-alterrole-title"></member>   <member><xref linkend="sql-droprole" endterm="sql-droprole-title"></member>   <member><xref linkend="sql-grant" endterm="sql-grant-title"></member>   <member><xref linkend="sql-revoke" endterm="sql-revoke-title"></member>   <member><xref linkend="app-createuser"></member>  </simplelist> </refsect1></refentry><!-- Keep this comment at the end of the fileLocal variables:mode: sgmlsgml-omittag:nilsgml-shorttag:tsgml-minimize-attributes:nilsgml-always-quote-attributes:tsgml-indent-step:1sgml-indent-data:tsgml-parent-document:nilsgml-default-dtd-file:"../reference.ced"sgml-exposed-tags:nilsgml-local-catalogs:"/usr/lib/sgml/catalog"sgml-local-ecat-files:nilEnd:-->

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -