]> begriffs open source - ai-pg/blob - full-docs/src/sgml/html/sql-altermaterializedview.html
WIP: toc builder
[ai-pg] / full-docs / src / sgml / html / sql-altermaterializedview.html
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>ALTER MATERIALIZED VIEW</title><link rel="stylesheet" type="text/css" href="stylesheet.css" /><link rev="made" href="pgsql-docs@lists.postgresql.org" /><meta name="generator" content="DocBook XSL Stylesheets Vsnapshot" /><link rel="prev" href="sql-alterlargeobject.html" title="ALTER LARGE OBJECT" /><link rel="next" href="sql-alteroperator.html" title="ALTER OPERATOR" /></head><body id="docContent" class="container-fluid col-10"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="5" align="center">ALTER MATERIALIZED VIEW</th></tr><tr><td width="10%" align="left"><a accesskey="p" href="sql-alterlargeobject.html" title="ALTER LARGE OBJECT">Prev</a> </td><td width="10%" align="left"><a accesskey="u" href="sql-commands.html" title="SQL Commands">Up</a></td><th width="60%" align="center">SQL Commands</th><td width="10%" align="right"><a accesskey="h" href="index.html" title="PostgreSQL 18.0 Documentation">Home</a></td><td width="10%" align="right"> <a accesskey="n" href="sql-alteroperator.html" title="ALTER OPERATOR">Next</a></td></tr></table><hr /></div><div class="refentry" id="SQL-ALTERMATERIALIZEDVIEW"><div class="titlepage"></div><a id="id-1.9.3.19.1" class="indexterm"></a><div class="refnamediv"><h2><span class="refentrytitle">ALTER MATERIALIZED VIEW</span></h2><p>ALTER MATERIALIZED VIEW — change the definition of a materialized view</p></div><div class="refsynopsisdiv"><h2>Synopsis</h2><pre class="synopsis">
3 ALTER MATERIALIZED VIEW [ IF EXISTS ] <em class="replaceable"><code>name</code></em>
4     <em class="replaceable"><code>action</code></em> [, ... ]
5 ALTER MATERIALIZED VIEW <em class="replaceable"><code>name</code></em>
6     [ NO ] DEPENDS ON EXTENSION <em class="replaceable"><code>extension_name</code></em>
7 ALTER MATERIALIZED VIEW [ IF EXISTS ] <em class="replaceable"><code>name</code></em>
8     RENAME [ COLUMN ] <em class="replaceable"><code>column_name</code></em> TO <em class="replaceable"><code>new_column_name</code></em>
9 ALTER MATERIALIZED VIEW [ IF EXISTS ] <em class="replaceable"><code>name</code></em>
10     RENAME TO <em class="replaceable"><code>new_name</code></em>
11 ALTER MATERIALIZED VIEW [ IF EXISTS ] <em class="replaceable"><code>name</code></em>
12     SET SCHEMA <em class="replaceable"><code>new_schema</code></em>
13 ALTER MATERIALIZED VIEW ALL IN TABLESPACE <em class="replaceable"><code>name</code></em> [ OWNED BY <em class="replaceable"><code>role_name</code></em> [, ... ] ]
14     SET TABLESPACE <em class="replaceable"><code>new_tablespace</code></em> [ NOWAIT ]
15
16 <span class="phrase">where <em class="replaceable"><code>action</code></em> is one of:</span>
17
18     ALTER [ COLUMN ] <em class="replaceable"><code>column_name</code></em> SET STATISTICS <em class="replaceable"><code>integer</code></em>
19     ALTER [ COLUMN ] <em class="replaceable"><code>column_name</code></em> SET ( <em class="replaceable"><code>attribute_option</code></em> = <em class="replaceable"><code>value</code></em> [, ... ] )
20     ALTER [ COLUMN ] <em class="replaceable"><code>column_name</code></em> RESET ( <em class="replaceable"><code>attribute_option</code></em> [, ... ] )
21     ALTER [ COLUMN ] <em class="replaceable"><code>column_name</code></em> SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN | DEFAULT }
22     ALTER [ COLUMN ] <em class="replaceable"><code>column_name</code></em> SET COMPRESSION <em class="replaceable"><code>compression_method</code></em>
23     CLUSTER ON <em class="replaceable"><code>index_name</code></em>
24     SET WITHOUT CLUSTER
25     SET ACCESS METHOD <em class="replaceable"><code>new_access_method</code></em>
26     SET TABLESPACE <em class="replaceable"><code>new_tablespace</code></em>
27     SET ( <em class="replaceable"><code>storage_parameter</code></em> [= <em class="replaceable"><code>value</code></em>] [, ... ] )
28     RESET ( <em class="replaceable"><code>storage_parameter</code></em> [, ... ] )
29     OWNER TO { <em class="replaceable"><code>new_owner</code></em> | CURRENT_ROLE | CURRENT_USER | SESSION_USER }
30 </pre></div><div class="refsect1" id="id-1.9.3.19.5"><h2>Description</h2><p>
31    <code class="command">ALTER MATERIALIZED VIEW</code> changes various auxiliary
32    properties of an existing materialized view.
33   </p><p>
34    You must own the materialized view to use <code class="command">ALTER MATERIALIZED
35    VIEW</code>.  To change a materialized view's schema, you must also have
36    <code class="literal">CREATE</code> privilege on the new schema.
37    To alter the owner, you must be able to <code class="literal">SET ROLE</code> to the
38    new owning role, and that role must have <code class="literal">CREATE</code>
39    privilege on the materialized view's schema.
40    (These restrictions enforce that altering
41    the owner doesn't do anything you couldn't do by dropping and recreating the
42    materialized view.  However, a superuser can alter ownership of any view
43    anyway.)
44   </p><p>
45    The statement subforms and actions available for
46    <code class="command">ALTER MATERIALIZED VIEW</code> are a subset of those available
47    for <code class="command">ALTER TABLE</code>, and have the same meaning when used for
48    materialized views.  See the descriptions for
49    <a class="link" href="sql-altertable.html" title="ALTER TABLE"><code class="command">ALTER TABLE</code></a>
50    for details.
51   </p></div><div class="refsect1" id="id-1.9.3.19.6"><h2>Parameters</h2><div class="variablelist"><dl class="variablelist"><dt><span class="term"><em class="replaceable"><code>name</code></em></span></dt><dd><p>
52        The name (optionally schema-qualified) of an existing materialized view.
53       </p></dd><dt><span class="term"><em class="replaceable"><code>column_name</code></em></span></dt><dd><p>
54        Name of an existing column.
55       </p></dd><dt><span class="term"><em class="replaceable"><code>extension_name</code></em></span></dt><dd><p>
56        The name of the extension that the materialized view is to depend on (or no longer
57        dependent on, if <code class="literal">NO</code> is specified).  A materialized view
58        that's marked as dependent on an extension is automatically dropped when
59        the extension is dropped.
60       </p></dd><dt><span class="term"><em class="replaceable"><code>new_column_name</code></em></span></dt><dd><p>
61        New name for an existing column.
62       </p></dd><dt><span class="term"><em class="replaceable"><code>new_owner</code></em></span></dt><dd><p>
63       The user name of the new owner of the materialized view.
64      </p></dd><dt><span class="term"><em class="replaceable"><code>new_name</code></em></span></dt><dd><p>
65       The new name for the materialized view.
66      </p></dd><dt><span class="term"><em class="replaceable"><code>new_schema</code></em></span></dt><dd><p>
67       The new schema for the materialized view.
68      </p></dd></dl></div></div><div class="refsect1" id="id-1.9.3.19.7"><h2>Examples</h2><p>
69    To rename the materialized view <code class="literal">foo</code> to
70    <code class="literal">bar</code>:
71 </p><pre class="programlisting">
72 ALTER MATERIALIZED VIEW foo RENAME TO bar;
73 </pre></div><div class="refsect1" id="id-1.9.3.19.8"><h2>Compatibility</h2><p>
74    <code class="command">ALTER MATERIALIZED VIEW</code> is a
75    <span class="productname">PostgreSQL</span> extension.
76   </p></div><div class="refsect1" id="id-1.9.3.19.9"><h2>See Also</h2><span class="simplelist"><a class="xref" href="sql-creatematerializedview.html" title="CREATE MATERIALIZED VIEW"><span class="refentrytitle">CREATE MATERIALIZED VIEW</span></a>, <a class="xref" href="sql-dropmaterializedview.html" title="DROP MATERIALIZED VIEW"><span class="refentrytitle">DROP MATERIALIZED VIEW</span></a>, <a class="xref" href="sql-refreshmaterializedview.html" title="REFRESH MATERIALIZED VIEW"><span class="refentrytitle">REFRESH MATERIALIZED VIEW</span></a></span></div></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="sql-alterlargeobject.html" title="ALTER LARGE OBJECT">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="sql-commands.html" title="SQL Commands">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="sql-alteroperator.html" title="ALTER OPERATOR">Next</a></td></tr><tr><td width="40%" align="left" valign="top">ALTER LARGE OBJECT </td><td width="20%" align="center"><a accesskey="h" href="index.html" title="PostgreSQL 18.0 Documentation">Home</a></td><td width="40%" align="right" valign="top"> ALTER OPERATOR</td></tr></table></div></body></html>