root/traduc/branches/bv747/manuel/ref/alter_conversion.sgml

Revision 13, 2.5 kB (checked in by gleu, 3 years ago)

Suite de l'import pour le passage CVS à SVN.

Line 
1 <!--
2 $Header: /var/lib/cvs/pgsql-fr/sgml/ref/alter_conversion.sgml,v 1.7.2.1 2005/03/14 06:03:00 guillaume Exp $
3 PostgreSQL documentation
4 -->
5
6 <refentry id="SQL-ALTERCONVERSION">
7  <refmeta>
8   <refentrytitle id="SQL-ALTERCONVERSION-TITLE">ALTER CONVERSION</refentrytitle>
9   <refmiscinfo>SQL - Instructions du langage</refmiscinfo>
10  </refmeta>
11
12  <refnamediv>
13   <refname>ALTER CONVERSION</refname>
14   <refpurpose>change la définition d'une conversion</refpurpose>
15  </refnamediv> 
16  
17  <indexterm zone="sql-alterconversion">
18   <primary>ALTER CONVERSION</primary>
19  </indexterm>
20
21  <refsynopsisdiv>
22 <synopsis>
23 ALTER CONVERSION <replaceable>nom</replaceable> RENAME TO <replaceable>nouveau nom</replaceable>
24 </synopsis>
25  </refsynopsisdiv>
26  
27  <refsect1>
28   <title>Description</title>
29
30   <para>
31    <command>ALTER CONVERSION</command> change la définition d'une
32    conversion. La seule fonctionnalité actuellement disponible est de
33    renommer la conversion.
34   </para>
35  </refsect1>
36  
37  <refsect1>
38   <title>Paramètres</title>
39
40   <variablelist>
41    <varlistentry>
42     <term><replaceable class="parameter">nom</replaceable></term>
43     <listitem>
44      <para>
45       Le nom d'une conversion existante.
46      </para>
47     </listitem>
48    </varlistentry>
49
50    <varlistentry>
51     <term><replaceable class="parameter">nouveau nom</replaceable></term>
52     <listitem>
53      <para>
54       Le nouveau nom de la conversion.
55      </para>
56     </listitem>
57    </varlistentry>
58   </variablelist>
59  </refsect1>
60
61  <refsect1>
62   <title>Exemples</title>
63
64   <para>
65    Pour renommer la conversion <literal>iso_8859_1_to_utf_8</literal> en
66    <literal>latin1_to_unicode</literal>&nbsp;:
67 <programlisting>
68 ALTER CONVERSION iso_8859_1_to_utf_8 RENAME TO latin1_to_unicode;
69 </programlisting>
70   </para>
71  </refsect1>
72
73  <refsect1>
74   <title>Compatibilité</title>
75
76   <para>
77    Il n'y a pas d'instruction <command>ALTER CONVERSION</command> dans le
78    standard SQL.
79   </para>
80  </refsect1>
81
82  <refsect1>
83   <title>Voir aussi</title>
84
85   <simplelist type="inline">
86    <member><xref linkend="sql-createconversion" endterm="sql-createconversion-title"></member>
87    <member><xref linkend="sql-dropconversion" endterm="sql-dropconversion-title"></member>
88   </simplelist>
89  </refsect1>
90 </refentry>
91
92 <!-- Keep this comment at the end of the file
93 Local variables:
94 mode: sgml
95 sgml-omittag:nil
96 sgml-shorttag:t
97 sgml-minimize-attributes:nil
98 sgml-always-quote-attributes:t
99 sgml-indent-step:1
100 sgml-indent-data:t
101 sgml-parent-document:nil
102 sgml-default-dtd-file:"../reference.ced"
103 sgml-exposed-tags:nil
104 sgml-local-catalogs:"/usr/lib/sgml/catalog"
105 sgml-local-ecat-files:nil
106 End:
107 -->
Note: See TracBrowser for help on using the browser.