Query: drop_conversion
OS: redhat
Section: 7
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
DROPCONVERSION(7) SQL Commands DROP CONVERSION(7)NAMEDROP CONVERSION - remove a user-defined conversionSYNOPSISDROP CONVERSION conversion_name [ CASCADE | RESTRICT ]DESCRIPTIONDROP CONVERSION removes a previously defined conversion. To be able to drop a conversion, you must own the conversion. "PARAMETERS" conversion_name The name of the conversion. The conversion name may be schema-qualified. CASCADE RESTRICT These key words do not have any effect, since there are no dependencies on conversions.NOTESUse CREATE CONVERSION to create user-defined conversions. The privileges required to drop a conversion may be changed in a future release.EXAMPLESTo drop the conversion named myname: DROP CONVERSION myname;COMPATIBILITYDROP CONVERSION is a PostgreSQL extension. There is no DROP CONVERSION statement in SQL99.SEE ALSOCREATE CONVERSION [create_conversion(7)] SQL - Language Statements 2002-11-22 DROP CONVERSION(7)