Table: customers
ID NAME DATATYPE
NUMBER VARCHAR2(100) CLOB
I want to change the DATA
column from CLOB
to `VARCHAR2(1000)
I have try ALTER TABLE customers MODIFY DATA VARCHAR2 (1000)
also
ALTER TABLE customers MODIFY (DATA VARCHAR2 (1000))
also
alter table customers modify
(data VARCHAR2(4000))
those normally works if the datatype is not a clob but I am getting a ORA-22859
because I am using oracle toad/apex.