3 PostgreSQL documentation
6 <refentry id=
"SQL-ALTERCONVERSION">
8 <refentrytitle id=
"SQL-ALTERCONVERSION-TITLE">ALTER CONVERSION
</refentrytitle>
9 <manvolnum>7</manvolnum>
10 <refmiscinfo>SQL - Language Statements
</refmiscinfo>
14 <refname>ALTER CONVERSION
</refname>
15 <refpurpose>change the definition of a conversion
</refpurpose>
18 <indexterm zone=
"sql-alterconversion">
19 <primary>ALTER CONVERSION
</primary>
24 ALTER CONVERSION
<replaceable>name
</replaceable> RENAME TO
<replaceable>newname
</replaceable>
25 ALTER CONVERSION
<replaceable>name
</replaceable> OWNER TO
<replaceable>newowner
</replaceable>
30 <title>Description
</title>
33 <command>ALTER CONVERSION
</command> changes the definition of a
38 You must own the conversion to use
<command>ALTER CONVERSION<
/>.
39 To alter the owner, you must also be a direct or indirect member of the new
40 owning role, and that role must have
<literal>CREATE
</literal> privilege on
41 the conversion's schema. (These restrictions enforce that altering the
42 owner doesn't do anything you couldn't do by dropping and recreating the
43 conversion. However, a superuser can alter ownership of any conversion
49 <title>Parameters
</title>
53 <term><replaceable class=
"parameter">name
</replaceable></term>
56 The name (optionally schema-qualified) of an existing conversion.
62 <term><replaceable class=
"parameter">newname
</replaceable></term>
65 The new name of the conversion.
71 <term><replaceable class=
"parameter">newowner
</replaceable></term>
74 The new owner of the conversion.
82 <title>Examples
</title>
85 To rename the conversion
<literal>iso_8859_1_to_utf8
</literal> to
86 <literal>latin1_to_unicode
</literal>:
88 ALTER CONVERSION iso_8859_1_to_utf8 RENAME TO latin1_to_unicode;
93 To change the owner of the conversion
<literal>iso_8859_1_to_utf8
</literal> to
94 <literal>joe
</literal>:
96 ALTER CONVERSION iso_8859_1_to_utf8 OWNER TO joe;
102 <title>Compatibility
</title>
105 There is no
<command>ALTER CONVERSION
</command> statement in the SQL
111 <title>See Also
</title>
113 <simplelist type=
"inline">
114 <member><xref linkend=
"sql-createconversion" endterm=
"sql-createconversion-title"></member>
115 <member><xref linkend=
"sql-dropconversion" endterm=
"sql-dropconversion-title"></member>