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

📄 create_database.sgml

📁 PostgreSQL7.4.6 for Linux
💻 SGML
字号:
<!--$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_database.sgml,v 1.36 2003/09/12 00:12:47 tgl Exp $PostgreSQL documentation--><refentry id="SQL-CREATEDATABASE"> <refmeta>  <refentrytitle id="sql-createdatabase-title">CREATE DATABASE</refentrytitle>  <refmiscinfo>SQL - Language Statements</refmiscinfo> </refmeta> <refnamediv>  <refname>CREATE DATABASE</refname>  <refpurpose>create a new database</refpurpose> </refnamediv> <indexterm zone="sql-createdatabase">  <primary>CREATE DATABASE</primary> </indexterm> <refsynopsisdiv><synopsis>CREATE DATABASE <replaceable class="PARAMETER">name</replaceable>    [ [ WITH ] [ OWNER [=] <replaceable class="parameter">dbowner</replaceable> ]           [ LOCATION [=] '<replaceable class="parameter">dbpath</replaceable>' ]           [ TEMPLATE [=] <replaceable class="parameter">template</replaceable> ]           [ ENCODING [=] <replaceable class="parameter">encoding</replaceable> ] ]</synopsis> </refsynopsisdiv> <refsect1>  <title>Description</title>  <para>   <command>CREATE DATABASE</command> creates a new   <productname>PostgreSQL</productname> database.  </para>  <para>   To create a database, you must be a superuser or have the special   <literal>CREATEDB</> privilege.   See <xref linkend="SQL-CREATEUSER" endterm="SQL-CREATEUSER-title">.  </para>  <para>   Normally, the creator becomes the owner of the new database.   Superusers can create databases owned by other users using the   <literal>OWNER</> clause. They can even create databases owned by   users with no special privileges. Non-superusers with <literal>CREATEDB</>   privilege can only create databases owned by themselves.  </para>  <para>   An alternative location can be specified in order to,   for example, store the database on a different disk.   The path must have been prepared with the    <xref linkend="APP-INITLOCATION" endterm="APP-INITLOCATION-title">   command.  </para>  <para>   If the path name does not contain a slash, it is interpreted   as an environment variable name, which must be known to the   server process. This way the database administrator can   exercise control over locations in which databases can be created.   (A customary choice is, e.g., <envar>PGDATA2</envar>.)   If the server is compiled with <literal>ALLOW_ABSOLUTE_DBPATHS</literal>   (not so by default), absolute path names, as identified by   a leading slash   (e.g., <filename>/usr/local/pgsql/data</filename>),   are allowed as well.   In either case, the final path name must be absolute and must not   contain any single quotes.  </para>  <para>   By default, the new database will be created by cloning the standard   system database <literal>template1</>.  A different template can be   specified by writing <literal>TEMPLATE   <replaceable class="parameter">name</replaceable></literal>.  In particular,   by writing <literal>TEMPLATE template0</>, you can create a virgin   database containing only the standard objects predefined by your   version of <productname>PostgreSQL</productname>.  This is useful   if you wish to avoid copying   any installation-local objects that may have been added to   <literal>template1</>.   </para>  <para>   The optional encoding parameter allows selection of the database   encoding.  When not specified, it defaults to the encoding used by   the selected template database.  </para> </refsect1> <refsect1>  <title>Parameters</title>    <variablelist>     <varlistentry>      <term><replaceable class="parameter">name</replaceable></term>      <listitem>       <para>	The name of a database to create.       </para>      </listitem>     </varlistentry>     <varlistentry>      <term><replaceable class="parameter">dbowner</replaceable></term>      <listitem>       <para>        The name of the database user who will own the new database,	or <literal>DEFAULT</literal> to use the default (namely, the	user executing the command).       </para>      </listitem>     </varlistentry>     <varlistentry>      <term><replaceable class="parameter">dbpath</replaceable></term>      <listitem>       <para>	An alternate file-system location in which to store the new database,	specified as a string literal;	or <literal>DEFAULT</literal> to use the default location.       </para>      </listitem>     </varlistentry>     <varlistentry>      <term><replaceable class="parameter">template</replaceable></term>      <listitem>       <para>        The name of the template from which to create the new database,	or <literal>DEFAULT</literal> to use the default template	(<literal>template1</literal>).       </para>      </listitem>     </varlistentry>     <varlistentry>      <term><replaceable class="parameter">encoding</replaceable></term>      <listitem>       <para>        Character set encoding to use in the new database.  Specify	a string constant (e.g., <literal>'SQL_ASCII'</literal>),	or an integer encoding number, or <literal>DEFAULT</literal>	to use the default encoding.       </para>      </listitem>     </varlistentry>    </variablelist>  <para>   Optional parameters can be written in any order, not only the order   illustrated above.  </para> </refsect1> <refsect1>  <title>Notes</title>   <para>    <command>CREATE DATABASE</> cannot be executed inside a transaction    block.   </para>   <para>    Errors along the line of <quote>could not initialize database directory</>    are most likely related to insufficient permissions on the data    directory, a full disk, or other file system problems.  When using an    alternate location, the user under    which the database server is running must have access to the location.   </para>   <para>    Use <xref linkend="SQL-DROPDATABASE" endterm="SQL-DROPDATABASE-title"> to remove a database.   </para>   <para>    The program <xref linkend="APP-CREATEDB" endterm="APP-CREATEDB-title"> is a    wrapper program around this command, provided for convenience.   </para>  <para>   There are security issues involved with using alternate database   locations specified with absolute path names; this is why the feature   is not enabled by default.  See <xref   linkend="manage-ag-alternate-locs"> for more information.  </para>  <para>   Although it is possible to copy a database other than <literal>template1</>   by specifying its name as the template, this is not (yet) intended as   a general-purpose <quote><command>COPY DATABASE</command></quote> facility.   We recommend that databases used as templates be treated as read-only.   See <xref linkend="manage-ag-templatedbs"> for more information.  </para> </refsect1> <refsect1>  <title>Examples</title>  <para>   To create a new database:<programlisting>CREATE DATABASE lusiadas;</programlisting>  </para>  <para>   To create a new database in an alternate area   <filename>~/private_db</filename>, execute the following from the   shell:<programlisting>mkdir private_dbinitlocation ~/private_db</programlisting>   Then execute the following from within a   <application>psql</application> session:<programlisting>CREATE DATABASE elsewhere WITH LOCATION '/home/olly/private_db';</programlisting>  </para> </refsect1> <refsect1>  <title>Compatibility</title>  <para>   There is no <command>CREATE DATABASE</command> statement in the SQL   standard.  Databases are equivalent to catalogs, whose creation is   implementation-defined.  </para> </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 + -