I have an encountered an issue where the data I was trying to store in my varchar2(4000) column was too big, so I wish to change the column to one more suitable for storing larg
For Oracle 11g:
ALTER TABLE table MODIFY column long; ALTER TABLE table MODIFY column clob;