Need help on hextoraw on timestamp
769072Apr 24 2012 — edited Apr 24 2012I'm unable to do HEXTORAW on a column which is populated using RAWTOHEX function in oracle.
Database Version: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
To Replicate Scenario:
create table row2hex (name raw(255));
insert into row2hex values (rawtohex(localtimestamp));
select localtimestamp,hextoraw(name) from row2hex
Expected Result: I expect the result similar to localtimestamp column output when I do hextoraw(name) in above query, but it does not work. Please assist.
Thanks in Advance!!