Du kan försöka göra det så här:
- Lägg till en kolumn med datatyp som XML-typ i tabellen.
- Kopiera data från clob-kolumnen till den nyligen tillagda xmltype-kolumnen.
- Släpp kolumnen.
- Byt namn på xmltype-kolumnen till namnet på din ursprungliga kolumn.
Något så här:
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;