Showing posts with label oracle 12c. Show all posts
Showing posts with label oracle 12c. Show all posts
Thursday, September 14, 2017
Wednesday, September 13, 2017
ORA-30673: column to be modified is not an identity column oracle 12c
ORA-30673: column to be modified is not an identity column
Answer : -
Currently orcle 12c does not support modifying an existing column as IDENTITY column
Solution : - Solution is to add a new column and then drop the existing one
ALTER TABLE Tablename ADD (ColumnName_NEW NUMBER(3) GENERATED ALWAYS AS IDENTITY);
Friday, September 8, 2017
ORA-00904 invalid identifier entity framework 6 migration oracle 12c
September 08, 2017.net, asp.net mvc, c#, entity framework, entity framework 6, oracle, oracle 12c, sql developer
No comments
ORA-00904 invalid identifier
this issue is caused because of we have used oracle keyword in column name. check below image
Action is keyword in oracle. this is the reason oracle appends "" double quotes in column name.
Solution : -
Just remove the double quotes and rename column name in Capitalize letters.