我有一个Oracle表,其中包含LONG RAW类型的字段,该字段包含ASCII字符数据。如何编写查询或视图,将其转换为更容易使用的字符串?这些总是FWIW单字节字符。
可能是
select ...., to_lob(long_raw) from old_table
(http://www.psoug.org/reference/convert_func.html)
或者
UTL_RAW.CAST_TO_VARCHAR2(b)
(http://www.dbasupport.com/forums/showthread.php?t=5342)。