try:alter table tbname add col_temp varchar2(..);
update tbname st col_temp=col_name;
update tbname set col_name=null;
commit;
alter table tbname modify (col_name clob);
update tbname set col_name=col_temp;
alter table tbname drop column col_temp;