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.
5
votes
5answers
1k views
EJB3 - @Column(insertable=“false”) question
I'm building a J2SE application with EJB3 and an Oracle Express Edition DB.
My problem is like that - I set an EntityBean in my project which matches a table in the DB. The table contains a column ...
4
votes
4answers
906 views
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 Predefine a few Exceptions like (ACCESS_INTO_NULL, ZERO_DIVIDE ...
3
votes
1answer
332 views
Hibernate + Oracle, strange null constraint violation with primitive type
I just add a new column on an entity and a strange thing is happening.
The entity was previously:
int publishedDayNb;
public int getPublishedDayNb() {
return publishedDayNb;
}
public void ...
3
votes
3answers
806 views
Rails modeling: converting HABTM to has_many :through
I'm doing maintenance work on an existing Rails site and am having some problems stemming from many-to-many associations. It looks like the site was initially built using has_and_belongs_to_many for ...
2
votes
3answers
543 views
ASP.Net C# CreateParameter with empty string
In my ASP.net C# web project I have a query command object that has parameters. I use the following code to fill the parameters:
DbCommand command = conn.CreateCommand();
command.CommandText = query; ...
2
votes
1answer
255 views
Django Oracle integrity error when saving any instance to database
I'm doing a migration from sqlite to oracle backend. The oracle database already exists and is maintained by other people. Its version is Oracle9i Enterprise Edition Release 9.2.0.1.0.
I have a ...
2
votes
1answer
397 views
How do I map Hibernate collections with Oracle's NOT NULL column constraint enforced?
I have 2 tables, ENQUIRY and ELEMENT with a One-to-Many relationship such that an Enquiry has many Elements.
I would like to enforce Oracle's NOT NULL constraint on foreign key column ...
2
votes
1answer
389 views
Add new row in a databound form with a Oracle Sequence as the primary key
I am connecting C# with Oracle 11g. I have a DataTable which i fill using an Oracle Data Adapter.
OracleDataAdapter da;
DataTable dt = new DataTable();
da = new OracleDataAdapter("SELECT * FROM ...
2
votes
2answers
491 views
No_data_found exception is propagating to outer block also?
In my code i am entering the salary which is not available in employees table and then again inserting duplicate employee_id in primary key column of employee table in exception block where i am ...
2
votes
1answer
1k views
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 .. v_data.last save exceptions
insert into my_filter_table values v_data (i);
...
2
votes
2answers
1k views
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' within the table I have three columns:
player_no (primary key)
position
goals
Within ...
1
vote
1answer
538 views
Hibernate and ORA-01400: cannot insert NULL
I've got fairly simple scenario, one table, one sequence for auto-generating primary keys :
CREATE TABLE foo (event_id NUMBER(19,0)....
CREATE SEQUENCE event_seq
Part of the hibernate mapping looks ...
1
vote
2answers
265 views
Oracle Bind Variable giving error
SET SERVEROUTPUT ON
VARIABLE dept_id NUMBER
DECLARE
max_deptno NUMBER(3);
dept_name departments.department_name%TYPE :='Education';
BEGIN
SELECT MAX(department_id)
INTO max_deptno
...
1
vote
5answers
438 views
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 am getting an ORA-01400 can't insert null value error for a column in which I am NOT inserting a null value.
...
1
vote
0answers
418 views
Hibernate Strange “ORA-01400: cannot insert NULL into” Error
there is a strange error ocurring to me. I'm working with Hibernate, I have mapped class called Widget, which has a Parameter class, but when I try to insert I get
"ORA-01400: cannot insert NULL ...
1
vote
1answer
4k views
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, has to persist in cascade another entity(B). The relationship within A and B is ...
1
vote
2answers
481 views
Compound Primary Key in Hibernate using Annotations
I have a table which uses two columns to represent its primary key, a transaction id and then the sequence number.
I tried what was recommended ...
0
votes
1answer
298 views
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 ...
0
votes
2answers
136 views
one-to-many relationshipt with database constrain and inverse=true
There are two classes A and B and hibernate mappings
<hibernate-mapping default-lazy="false">
<class name="A" table="A">
<id name="id" type="long">
...
0
votes
1answer
120 views
In Django, why is migration to Oracle resulting in attempts to save instances with null ID?
I'm migrating a Django project from SQLite to Oracle, and I'm getting an error thrown on the line disn_requisition.save() claiming that it has a null ID. I have not attempted to manually set or fiddle ...