Change column type from long to clob
SQL> SQL> SQL> create table myTable (c1 long); Table created. SQL> SQL> insert into myTable values ('a'); 1 row created. SQL> SQL> commit; Commit complete. SQL> SQL> alter table myTable modify (c1 clob); Table altered. SQL> SQL> SQL> drop table myTable; Table dropped. SQL>