oracle修改字段类型为clob

alter table templateviewer rename column objectnames to objectnames_;
alter table templateviewer add objectnames clob;
update templateviewer set objectnames = objectnames_;
alter table templateviewer drop COLUMN objectnames_;


-- alter table uf_personscore modify servscore varchar2(32);
原文地址:https://www.cnblogs.com/jieyuefeng/p/3040620.html