Search code examples
sqldatabaseoracle-databaseclob

How to convert a CLOB type column to LONG type column in Oracle DB


I need a way to convert a CLOB type column to LONG type column in Oracle DB without losing data or creating another new table . I am not able to edit types in Oracle SQL Developer Is there a way with cursors or something ? Please Help Thanks


Solution

  • Looks like creating a new column , porting contents of the old column to new column or creating a new table is the only way . Thanks all !