あなたはこのようにそれを試みることができます:
- データ型の列をXMLタイプとしてテーブルに追加します。
- clob列のデータを新しく追加されたxmltype列にコピーします。
- clob列を削除します。
- xmltype列の名前を元の列の名前に変更します。
このようなもの:
alter table yourtable
add (temp_col xmltype);
update yourtable
set temp_col = xmltype.createxml(clobCol);
alter table yourtable
drop column clobCol;
alter table yourtable
rename column temp_col to clobCol;