Top "Ora-01400" questions

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.

ORACLE - Cannot insert a NULL value to a NON-Primary Key

I Have searched the web and various forums but I cannot figure out why this won't work. My Database is …

sql oracle ora-01400
Oracle DML errors lacking detail

I am catching errors from a bulk insert operation like this: begin --bulk insert forall i in v_data.first .. …

oracle plsql ora-00001 ora-01400 ora-02290
Handle ORACLE Exceptions

I need to handle the ORA-01400 error (cannot insert NULL into ("SCHEMA"."TABLE_NAME"."COLUMN_NAME") ) using a exception handle. …

oracle exception-handling plsql ora-01400
How can I insert a record using Form Builder and PL/SQL?

I'm slowly learning SQL and how to use form builder 6. The situation is I have a simple table named 'players' …

sql oracle formbuilder ora-01400
Oracle - Error: 'ORA-01400: cannot insert NULL into

I'm trying to insert a record into a table, but getting the error - 'ORA-01400: cannot insert NULL into (....'. …

mysql oracle migration notnull ora-01400
Could not synchronize database state with session

I'm having trouble trying to persist an entity which ID is a generated value. This entity (A), at persistence time, …

java hibernate jpa ora-01400
ORA-01400 cannot insert null error in one to one relationship

i have this code public void guardarAspirante(AspiranteDTO aspiranteDTO) { Aspirante aspirante = new Aspirante(); String usuarioMovimiento = AspiranteCN.class.getSimpleName(); Date fecha = …

java oracle jpa-2.0 toplink ora-01400
ORA-01400 can't insert null value... but I am NOT inserting null value!

I am trying to insert data in an Oracle table by using ODP.NET from a C# application, but I …

oracle odp.net oracle-xe ora-01400