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 handling no data found exception but i do not why No data found exception in the end also?

OUTPUT coming:

Enter some other sal
ORA-01400: cannot insert NULL into ("SCOTT"."EMPLOYEES"."LAST_NAME")
ORA-01403: no data found  --This should not come according to logic

This is the code:

DECLARE
v_sal number:=&p_sal;
v_num number;
BEGIN
   BEGIN
            select salary INTO v_num from employees where salary=v_sal;
   EXCEPTION
           WHEN no_data_found THEN
                   DBMS_OUTPUT.PUT_LINE('Enter some other sal');

           INSERT INTO employees (employee_id)values(100) ;
   END;
EXCEPTION
   WHEN OTHERS THEN
   DBMS_OUTPUT.PUT_LINE(sqlerrm);
END;       
link|improve this question

31% accept rate
Technically your original exception wasn't handled, it threw another exception. This seems to me expected behavior. – David Apr 18 '10 at 18:07
feedback

3 Answers

up vote 4 down vote accepted

The behaviour is that errors hurled in the EXCEPTIONS block get concatenated to SQLERRM, and hence propagated upwards. I grant you it is not documented but we can clearly see it here:

SQL> declare
  2      v_sal t23.sal%type := 230;
  3      l_num t23.sal%type;
  4  begin
  5      begin
  6          begin
  7              select sal into l_num
  8              from t23 where sal = v_sal;
  9          exception
 10              when no_data_found then
 11                  dbms_output.put_line('inner exception::'||sqlerrm);
 12                  insert into t23  values (99, 'MR KNOX', v_sal);
 13          end;
 14      exception
 15          when dup_val_on_index then
 16              dbms_output.put_line('middle exception::'||sqlerrm);
 17              insert into t23 (id, sal) values (99, v_sal);
 18      end;
 19  exception
 20      when others then
 21          dbms_output.put_line('outer exception::'||sqlerrm);
 22  end;
 23  /
inner exception::ORA-01403: no data found
middle exception::ORA-00001: unique constraint (APC.T23_PK) violated
ORA-01403: no data found
outer exception::ORA-01400: cannot insert NULL into ("APC"."T23"."LAST_NAME")
ORA-00001: unique constraint (APC.T23_PK) violated
ORA-01403: no data found

PL/SQL procedure successfully completed.

SQL>  

Note: if there is a nested exception block which successfully handles the thrown exception it is not concatenated to SQLERRM. That is, the SQLERRM consists of a stack of unsucessfully handled exceptions.

link|improve this answer
feedback

In your exception block you try to insert into employees, but do not set the column last_name, which is not NULL-able.

ORA-01400: cannot insert NULL into ("SCOTT"."EMPLOYEES"."LAST_NAME")

The ORA-01403: no data found is part of the stack-trace, caused by your failed select.


You can either define DEFAULT values for all not-nullable columns or change your insert:

INSERT INTO employees (employee_id, last_name, ...) Values (100, 'Scott', ...);
link|improve this answer
feedback

check desc employees you will find there are not null constraints in it along with that check user_constraints and user_cons_columns , you will get an exact reason why it is not getting inserted .what you can do is either you add value if there are constraints attached to the fourth column lets say hire_date or email or drop the constraint of hire_date and email so that the unique constraint will go .... another thing it is advisable for you not to manipulate any data in employees table ,create a clone of employees table name it as employees2 and manipulate in any way possible. ...again I would like you to make clones of employees table ,departments,regions,country,jobs,job_grades, in order to protect from any manipulation in employees and other tables. dont forget after creating clones drop all the constraints and start creating constraints with the help of select * from user_constraints where table_name='EMPLOYEES'... you will be able to get the structure of the constraint and thereby put your own created constraint into clone employees table for example employees2.

when you will create a clone of employees table by create table employees2 as select * from employees then you will see that most constraints are gone or freed but some are there like when you will do this query desc employees2 and select * from user_constraints then there will be constraint in columns last_name,hire_date,email etc.... drop all of them first by alter table employees2 drop constraint SYS_00012345 then take a look at the user_constraints of employees table by select * from user_constraints where table_name='EMPLOYEES'; then after seeing the structure simultaneously add or modify constraints by altering table in this case alter table employees2 modify last_name varchar2(25) constraint deeept_id_nn not null;

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.