ORA-01400: cannot insert NULL into ("SCHEMA"."TABLE_NAME"."COLUMN_NAME") Cause: You tried to insert a NULL value into a column that does not accept NULL values.
ORA-01400: cannot insert NULL into ("SCHEMA"."TABLE_NAME"."COLUMN_NAME")
Cause:
You tried to insert a NULL value into a column that does not accept NULL values.
Solution:
Correct your INSERT statement so that you do not insert a NULL
value into a column that is defined as NOT NULL
.