CLOB datatype
I have a table in which, I have a column with datatype as BLOB. I need to alter the datatype to a CLOB
I tried
ALTER TABLE schema.table MODIFY (field CLOB)
It errored out saying
Error: ORA-22858: invalid alteration of datatype
Is there a way this can be altered (that doesn't involve a drop of the column/table) ?