小编典典

将小巧的Oracle长原始值转换为其他类型

sql

我有一个Oracle表,其中包含LONG
RAW类型的字段,该字段包含ASCII字符数据。如何编写查询或视图,将其转换为更容易使用的字符串?这些总是FWIW单字节字符。


阅读 138

收藏
2021-04-14

共1个答案

小编典典

可能是

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)。

2021-04-14