Możesz spróbować zrobić to w ten sposób:
- Dodaj do tabeli kolumnę o typie danych jako typ XML.
- Skopiuj dane z kolumny clob do nowo dodanej kolumny xmltype.
- Upuść kolumnę clob.
- Zmień nazwę kolumny xmltype na nazwę oryginalnej kolumny.
Coś takiego:
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;