ALTER CONVERSION   () manpage
ALTER CONVERSION
2005-01-17
SQL - Language Statements
SQL Commands
  • NAME
      ALTER CONVERSION - change the definition of a conversion
  • SYNOPSIS


      
      ALTER CONVERSION name RENAME TO newname
      ALTER CONVERSION name OWNER TO newowner
      
      
  • DESCRIPTION


      ALTER CONVERSION changes the definition of a conversion.
  • PARAMETERS
      name
      The name (optionally schema-qualified) of an existing conversion.
      newname
      The new name of the conversion.
      newowner
      The new owner of the conversion. To change the owner of a conversion, you must be a superuser.
  • EXAMPLES


      To rename the conversion iso_8859_1_to_utf_8 to latin1_to_unicode:

      
      ALTER CONVERSION iso_8859_1_to_utf_8 RENAME TO latin1_to_unicode;
      
      


      To change the owner of the conversion iso_8859_1_to_utf_8 to joe:

      
      ALTER CONVERSION iso_8859_1_to_utf_8 OWNER TO joe;
      
      
  • COMPATIBILITY


      There is no ALTER CONVERSION statement in the SQL standard.
  • SEE ALSO
Current Users: 39 © 1999-2006 Linux.com.hk PenguinSoft
All trademarks and copyrights on this page are owned by their respective companies. Linux is a trademark of Linus Torvalds.