Friday, 27 April 2007

Converting Between Character Sets

If you have extended characters with accents you can convert them consistently and safely as follows:

SELECT CONVERT ('ediária', 'US7ASCII', 'WE8ISO8859P1') AS converted 
FROM DUAL;

ediaria


Consistent and already available for you to use.

No comments: