gooderp18绿色标准版
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
8.2KB

  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 V1.79.1" /><link rel="prev" href="sql-alterlargeobject.html" title="ALTER LARGE OBJECT" /><link rel="next" href="sql-alteroperator.html" title="ALTER OPERATOR" /></head><body><div xmlns="http://www.w3.org/TR/xhtml1/transitional" 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 12.4 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></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. 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. <span class="phrase">where <em class="replaceable"><code>action</code></em> is one of:</span>
  16. ALTER [ COLUMN ] <em class="replaceable"><code>column_name</code></em> SET STATISTICS <em class="replaceable"><code>integer</code></em>
  17. 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> [, ... ] )
  18. ALTER [ COLUMN ] <em class="replaceable"><code>column_name</code></em> RESET ( <em class="replaceable"><code>attribute_option</code></em> [, ... ] )
  19. ALTER [ COLUMN ] <em class="replaceable"><code>column_name</code></em> SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN }
  20. CLUSTER ON <em class="replaceable"><code>index_name</code></em>
  21. SET WITHOUT CLUSTER
  22. SET ( <em class="replaceable"><code>storage_parameter</code></em> [= <em class="replaceable"><code>value</code></em>] [, ... ] )
  23. RESET ( <em class="replaceable"><code>storage_parameter</code></em> [, ... ] )
  24. OWNER TO { <em class="replaceable"><code>new_owner</code></em> | CURRENT_USER | SESSION_USER }
  25. </pre></div><div class="refsect1" id="id-1.9.3.19.5"><h2>Description</h2><p>
  26. <code class="command">ALTER MATERIALIZED VIEW</code> changes various auxiliary
  27. properties of an existing materialized view.
  28. </p><p>
  29. You must own the materialized view to use <code class="command">ALTER MATERIALIZED
  30. VIEW</code>. To change a materialized view's schema, you must also have
  31. <code class="literal">CREATE</code> privilege on the new schema.
  32. To alter the owner, you must also be a direct or indirect member of the new
  33. owning role, and that role must have <code class="literal">CREATE</code> privilege on
  34. the materialized view's schema. (These restrictions enforce that altering
  35. the owner doesn't do anything you couldn't do by dropping and recreating the
  36. materialized view. However, a superuser can alter ownership of any view
  37. anyway.)
  38. </p><p>
  39. The <code class="literal">DEPENDS ON EXTENSION</code> form marks the materialized view
  40. as dependent on an extension, such that the materialized view will
  41. automatically be dropped if the extension is dropped.
  42. </p><p>
  43. The statement subforms and actions available for
  44. <code class="command">ALTER MATERIALIZED VIEW</code> are a subset of those available
  45. for <code class="command">ALTER TABLE</code>, and have the same meaning when used for
  46. materialized views. See the descriptions for <a class="xref" href="sql-altertable.html" title="ALTER TABLE"><span class="refentrytitle">ALTER TABLE</span></a>
  47. for details.
  48. </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>
  49. The name (optionally schema-qualified) of an existing materialized view.
  50. </p></dd><dt><span class="term"><em class="replaceable"><code>column_name</code></em></span></dt><dd><p>
  51. Name of a new or existing column.
  52. </p></dd><dt><span class="term"><em class="replaceable"><code>extension_name</code></em></span></dt><dd><p>
  53. The name of the extension that the materialized view is to depend on.
  54. </p></dd><dt><span class="term"><em class="replaceable"><code>new_column_name</code></em></span></dt><dd><p>
  55. New name for an existing column.
  56. </p></dd><dt><span class="term"><em class="replaceable"><code>new_owner</code></em></span></dt><dd><p>
  57. The user name of the new owner of the materialized view.
  58. </p></dd><dt><span class="term"><em class="replaceable"><code>new_name</code></em></span></dt><dd><p>
  59. The new name for the materialized view.
  60. </p></dd><dt><span class="term"><em class="replaceable"><code>new_schema</code></em></span></dt><dd><p>
  61. The new schema for the materialized view.
  62. </p></dd></dl></div></div><div class="refsect1" id="id-1.9.3.19.7"><h2>Examples</h2><p>
  63. To rename the materialized view <code class="literal">foo</code> to
  64. <code class="literal">bar</code>:
  65. </p><pre class="programlisting">
  66. ALTER MATERIALIZED VIEW foo RENAME TO bar;
  67. </pre></div><div class="refsect1" id="id-1.9.3.19.8"><h2>Compatibility</h2><p>
  68. <code class="command">ALTER MATERIALIZED VIEW</code> is a
  69. <span class="productname">PostgreSQL</span> extension.
  70. </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">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="sql-commands.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="sql-alteroperator.html">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">Home</a></td><td width="40%" align="right" valign="top"> ALTER OPERATOR</td></tr></table></div></body></html>
上海开阖软件有限公司 沪ICP备12045867号-1