I am trying to change the column data-type from CLOB to NVARCHAR2 inside the Entity Developer.
When I attempt to update the database from model, I get this error:
Code: Select all
ORA-00906: missing left parenthesis
Code: Select all
ALTER TABLE ITEWORLD."Module"
ADD (
"ITEModuleID" NVARCHAR2 NOT NULL
);
What is wrong?
PS. Why doesn't the tool add a default length for VARCHAR / NVARCHAR?