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;

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM