postgresql/doc/src/sgml/ref/drop_database.sgml

102 lines
2.4 KiB
Plaintext
Raw Normal View History

<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/drop_database.sgml,v 1.25 2010/04/03 07:23:00 petere Exp $
PostgreSQL documentation
-->
<refentry id="SQL-DROPDATABASE">
<refmeta>
<refentrytitle>DROP DATABASE</refentrytitle>
<manvolnum>7</manvolnum>
<refmiscinfo>SQL - Language Statements</refmiscinfo>
</refmeta>
2003-05-04 04:23:16 +02:00
<refnamediv>
2003-05-04 04:23:16 +02:00
<refname>DROP DATABASE</refname>
<refpurpose>remove a database</refpurpose>
</refnamediv>
2003-05-04 04:23:16 +02:00
2003-08-31 19:32:24 +02:00
<indexterm zone="sql-dropdatabase">
<primary>DROP DATABASE</primary>
</indexterm>
<refsynopsisdiv>
2003-05-04 04:23:16 +02:00
<synopsis>
2005-11-22 16:24:18 +01:00
DROP DATABASE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable>
2003-05-04 04:23:16 +02:00
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Description</title>
2003-05-04 04:23:16 +02:00
<para>
<command>DROP DATABASE</command> drops a database. It removes the
catalog entries for the database and deletes the directory
containing the data. It can only be executed by the database owner.
2003-09-12 02:12:47 +02:00
Also, it cannot be executed while you or anyone else are connected
to the target database. (Connect to <literal>postgres</literal> or any
2003-09-12 02:12:47 +02:00
other database to issue this command.)
2003-05-04 04:23:16 +02:00
</para>
2003-05-04 04:23:16 +02:00
<para>
<command>DROP DATABASE</command> cannot be undone. Use it with care!
</para>
</refsect1>
<refsect1>
<title>Parameters</title>
<variablelist>
2005-11-22 16:24:18 +01:00
<varlistentry>
<term><literal>IF EXISTS</literal></term>
<listitem>
<para>
Do not throw an error if the database does not exist. A notice is issued
in this case.
</para>
</listitem>
</varlistentry>
2003-05-04 04:23:16 +02:00
<varlistentry>
<term><replaceable class="PARAMETER">name</replaceable></term>
<listitem>
<para>
The name of the database to remove.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>Notes</title>
2003-09-12 02:12:47 +02:00
<para>
<command>DROP DATABASE</> cannot be executed inside a transaction
block.
</para>
<para>
2003-05-04 04:23:16 +02:00
This command cannot be executed while connected to the target
database. Thus, it might be more convenient to use the program
<xref linkend="app-dropdb"> instead,
2003-05-04 04:23:16 +02:00
which is a wrapper around this command.
</para>
2003-05-04 04:23:16 +02:00
</refsect1>
<refsect1>
<title>Compatibility</title>
<para>
There is no <command>DROP DATABASE</command> statement in the SQL standard.
</para>
</refsect1>
2003-05-04 04:23:16 +02:00
<refsect1>
<title>See Also</title>
<simplelist type="inline">
<member><xref linkend="sql-createdatabase"></member>
2003-05-04 04:23:16 +02:00
</simplelist>
</refsect1>
</refentry>