I had to change my column from USER_ID NUMBER(22) to USERNAME VARCHAR2 (20 BYTE)Oracle does not allow to modify column when there is data in the table. Also, you can not rename the column.
Finally I came up with the following script:
ALTER TABLE: add new column (USERNAME) with desired datatype.
No comments:
Post a Comment
Thank you for your feedback