mirror of
https://github.com/postgres/postgres.git
synced 2025-12-19 17:02:53 +03:00
another section if required by the platform (instead of the old way of building them in section "l" and always transforming them to the platform-specific section). This speeds up the installation on common platforms, and it avoids some funny business with the man page tools and build process.
71 lines
2.1 KiB
Plaintext
71 lines
2.1 KiB
Plaintext
<!--
|
|
$PostgreSQL: pgsql/doc/src/sgml/ref/create_group.sgml,v 1.19 2008/11/14 10:22:46 petere Exp $
|
|
PostgreSQL documentation
|
|
-->
|
|
|
|
<refentry id="SQL-CREATEGROUP">
|
|
<refmeta>
|
|
<refentrytitle id="sql-creategroup-title">CREATE GROUP</refentrytitle>
|
|
<manvolnum>7</manvolnum>
|
|
<refmiscinfo>SQL - Language Statements</refmiscinfo>
|
|
</refmeta>
|
|
|
|
<refnamediv>
|
|
<refname>CREATE GROUP</refname>
|
|
<refpurpose>define a new database role</refpurpose>
|
|
</refnamediv>
|
|
|
|
<indexterm zone="sql-creategroup">
|
|
<primary>CREATE GROUP</primary>
|
|
</indexterm>
|
|
|
|
<refsynopsisdiv>
|
|
<synopsis>
|
|
CREATE GROUP <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ]
|
|
|
|
where <replaceable class="PARAMETER">option</replaceable> can be:
|
|
|
|
SUPERUSER | NOSUPERUSER
|
|
| CREATEDB | NOCREATEDB
|
|
| CREATEROLE | NOCREATEROLE
|
|
| CREATEUSER | NOCREATEUSER
|
|
| INHERIT | NOINHERIT
|
|
| LOGIN | NOLOGIN
|
|
| [ ENCRYPTED | UNENCRYPTED ] PASSWORD '<replaceable class="PARAMETER">password</replaceable>'
|
|
| VALID UNTIL '<replaceable class="PARAMETER">timestamp</replaceable>'
|
|
| IN ROLE <replaceable class="PARAMETER">rolename</replaceable> [, ...]
|
|
| IN GROUP <replaceable class="PARAMETER">rolename</replaceable> [, ...]
|
|
| ROLE <replaceable class="PARAMETER">rolename</replaceable> [, ...]
|
|
| ADMIN <replaceable class="PARAMETER">rolename</replaceable> [, ...]
|
|
| USER <replaceable class="PARAMETER">rolename</replaceable> [, ...]
|
|
| SYSID <replaceable class="PARAMETER">uid</replaceable>
|
|
</synopsis>
|
|
</refsynopsisdiv>
|
|
|
|
<refsect1>
|
|
<title>Description</title>
|
|
|
|
<para>
|
|
<command>CREATE GROUP</command> is now an alias for
|
|
<xref linkend="sql-createrole" endterm="sql-createrole-title">.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1>
|
|
<title>Compatibility</title>
|
|
|
|
<para>
|
|
There is no <command>CREATE GROUP</command> statement in the SQL
|
|
standard.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1>
|
|
<title>See Also</title>
|
|
|
|
<simplelist type="inline">
|
|
<member><xref linkend="sql-createrole" endterm="sql-createrole-title"></member>
|
|
</simplelist>
|
|
</refsect1>
|
|
</refentry>
|