alter_conversion.7

来自「PostgreSQL 8.2中增加了很多企业用户所需要的功能和性能上的提高,其开」· 7 代码 · 共 58 行

7
58
字号
.\\" auto-generated by docbook2man-spec $Revision: 1.1.1.1 $.TH "ALTER CONVERSION" "" "2008-01-03" "SQL - Language Statements" "SQL Commands".SH NAMEALTER CONVERSION \- change the definition of a conversion.SH SYNOPSIS.sp.nfALTER CONVERSION \fIname\fR RENAME TO \fInewname\fRALTER CONVERSION \fIname\fR OWNER TO \fInewowner\fR.sp.fi.SH "DESCRIPTION".PP\fBALTER CONVERSION\fR changes the definition of aconversion..PPYou must own the conversion to use \fBALTER CONVERSION\fR.To alter the owner, you must also be a direct or indirect member of the newowning role, and that role must have CREATE privilege onthe conversion's schema. (These restrictions enforce that altering theowner doesn't do anything you couldn't do by dropping and recreating theconversion. However, a superuser can alter ownership of any conversionanyway.).SH "PARAMETERS".TP\fB\fIname\fB\fRThe name (optionally schema-qualified) of an existing conversion..TP\fB\fInewname\fB\fRThe new name of the conversion..TP\fB\fInewowner\fB\fRThe new owner of the conversion..SH "EXAMPLES".PPTo rename the conversion iso_8859_1_to_utf8 tolatin1_to_unicode:.sp.nfALTER CONVERSION iso_8859_1_to_utf8 RENAME TO latin1_to_unicode;.sp.fi.PPTo change the owner of the conversion iso_8859_1_to_utf8 tojoe:.sp.nfALTER CONVERSION iso_8859_1_to_utf8 OWNER TO joe;.sp.fi.SH "COMPATIBILITY".PPThere is no \fBALTER CONVERSION\fR statement in the SQLstandard..SH "SEE ALSO"CREATE CONVERSION [\fBcreate_conversion\fR(7)], DROP CONVERSION [\fBdrop_conversion\fR(l)]

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?