oracle clob与nclob的互相转换
Posted aLa神灯
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle clob与nclob的互相转换相关的知识,希望对你有一定的参考价值。
drop table clobTets create table clobTets( col1 nclob ) select * from clobTets insert into clobTets values(‘11111‘) alter table clobTets add (col2 varchar2(4000)) update clobTets set col2 = dbms_lob.substr(col1,4000) alter table clobTets drop column col1 alter table clobTets rename column col2 to col1; alter table clobTets add (col2 clob) update clobTets set col2 = col1 alter table clobTets drop column col1 alter table clobTets rename column col2 to col1;
以上是关于oracle clob与nclob的互相转换的主要内容,如果未能解决你的问题,请参考以下文章