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
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>DROP SCHEMA</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-droprule.html" title="DROP RULE">
<link rel="next" href="sql-dropsequence.html" title="DROP SEQUENCE">
<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-dropschema"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2>Name</h2>
<p>DROP SCHEMA — remove a schema</p>
</div>
<a name="id772335"></a><div class="refsynopsisdiv">
<h2>Synopsis</h2>
<pre class="synopsis">DROP SCHEMA <em class="replaceable"><code>name</code></em> [, ...] [ CASCADE | RESTRICT ]</pre>
</div>
<div class="refsect1" lang="en">
<a name="id772358"></a><h2>Description</h2>
<p> <code class="command">DROP SCHEMA</code> removes schemas from the database.
</p>
<p> A schema can only be dropped by its owner or a superuser. Note that
the owner can drop the schema (and thereby all contained objects)
even if he does not own some of the objects within the schema.
</p>
</div>
<div class="refsect1" lang="en">
<a name="id772378"></a><h2>Parameters</h2>
<div class="variablelist"><dl>
<dt><span class="term"><em class="replaceable"><code>name</code></em></span></dt>
<dd><p> The name of a schema.
</p></dd>
<dt><span class="term"><code class="literal">CASCADE</code></span></dt>
<dd><p> Automatically drop objects (tables, functions, etc.) that are
contained in the schema.
</p></dd>
<dt><span class="term"><code class="literal">RESTRICT</code></span></dt>
<dd><p> Refuse to drop the schema if it contains any objects. This is
the default.
</p></dd>
</dl></div>
</div>
<div class="refsect1" lang="en">
<a name="id772421"></a><h2>Examples</h2>
<p> To remove schema <code class="literal">mystuff</code> from the database,
along with everything it contains:
</p>
<pre class="programlisting">DROP SCHEMA mystuff CASCADE;</pre>
<p>
</p>
</div>
<div class="refsect1" lang="en">
<a name="id772443"></a><h2>Compatibility</h2>
<p> <code class="command">DROP SCHEMA</code> is fully conforming with the SQL
standard, except that the standard only allows one schema to be
dropped per command.
</p>
</div>
<div class="refsect1" lang="en">
<a name="id772458"></a><h2>See Also</h2>
<span class="simplelist"><a href="sql-alterschema.html">ALTER SCHEMA</a>, <a href="sql-createschema.html">CREATE SCHEMA</a></span>
</div>
</div></body>
</html>
|