Modify Data Type from Number to Varchar2
Hi,
We have a production applications running. There is a column called home_number which has datatype called number, Now the new requirement is to change to varchar2.
I tried to alter the table getting the below error.
-- alter table "TECH_SOURCING_EMPLOYEE_DETAILS" modify
--("HOME_PH_NUMBER" VARCHAR2(1000))
-- /
-- ORA-01439: column to be modified must be empty to change datatype
Please suggest me how to modify the column data type without affecting the data.
Thanks
Sudhir