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