DROP CONVERSION - delete a user-defined encoding conversion

SYNOPSIS

 

DROP CONVERSION name [ CASCADE | RESTRICT ]

DESCRIPTION Description

DROP CONVERSION to remove a transcoding previously defined. To delete a conversion, you must own the conversion.

PARAMETERS Parameters

name

 Transcoding name. The name may be schema-qualified.
CASCADE
RESTRICT

 These keys have no effect, since there is no dependence on the encoding conversion.

EXAMPLES Examples


 Delete called transcoding of myname:

 

DROP CONVERSION myname;

Guess you like

Origin www.cnblogs.com/fanweisheng/p/11080846.html