hi,
I have a coloumn whihc is vachar2 and it has numbers and hexadecimal ascii codes both. I need to convert ascii codes to strings, but keep numbers.
I can convert hex to ascii like below
select utl_raw.cast_to_varchar2(hextoraw('4B414C414E42494C4749')) from dual;
select utl_raw.cast_to_varchar2(hextoraw(EXCHANGE_ID)) from mytable ;
results;
--------

Result has lots of garbage characters due to numbers which coloumn have. I only need meaningful values like "Kalanbilgi" or "Arayanibil".