Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Oracle 中将 NCLOB 转换为 VARCHAR2,但出现以下错误:
ORA-22835: 缓冲区太小,无法进行 CLOB 到 CHAR 或 BLOB 到 RAW 转换(实际:2669,最大值:2000)
这是我正在使用的代码:
select substr(TO_NCHAR(NCLOB_FIELD),1,3800) from TABLE
有什么办法可以解决这个错误?
在转换之前放置SUBSTR并使用较小的尺寸:
SUBSTR
select TO_NCHAR(substr(NCLOB_FIELD,1,2000)) from TABLE;