I want trap exception for input parameter:
create or replace procedure
dept_employee_info (P_deptno in emp.deptno%type)
is
CURSOR employee is
select * from emp
where deptno = p_deptno;
v_employee employee%rowtype;
dept_employee_number number:=0;
dept_total_sal number :=0;
dept_max_salary number :=0;
dept_avg_sal number :=0;
BEGIN
BEGIN
dbms_output.put_line (p_deptno||' employee information ');
OPEN employee ;
LOOP
FETCH employee into v_employee;
EXIT WHEN employee%notfound;
dbms_output.put_line (rpad(v_employee.empno,5)||rpad(v_employee.ename,12)
||rpad(v_employee.job,12)
||rpad(v_employee.mgr,5)||rpad(v_employee.hiredate,12)||rpad(v_employee.sal,8)
||rpad(nvl(v_employee.comm,0) ,8)||rpad(v_employee.deptno,4));
dept_employee_number :=dept_employee_number+1;
dept_total_sal :=dept_total_sal+v_employee.sal;
IF dept_max_salary < v_employee.sal then
dept_max_salary :=v_employee.sal;
END IF;
END LOOP ;
if employee%rowcount=0 then
raise no_data_found ;
end if;
CLOSE EMPLOYEE;
EXCEPTION --inner block exception
WHEN NO_DATA_FOUND THEN
dbms_output.put_line('inner bock error no data found raising into outer exception block');
RAISE no_data_found;
WHEN OTHERS THEN
DBMS_OUTPUT.PUT_LINE ('ERROR CODE : '||SQLCODE||CHR(10)||'ERORR MESSAGE '||SUBSTR(SQLERRM,1,100));
END ;
dept_avg_sal :=round( to_number(dept_total_sal/dept_employee_number),3);
dbms_output.put_line ( 'employee number : '||dept_employee_number||chr(10)
||'total salary is : '||dept_total_sal||chr(10)
||'max salalry is : '||dept_max_salary||chr(10)
||'avrage salary : '||dept_avg_sal) ;
EXCEPTION --outer block exception
WHEN NO_DATA_FOUND THEN
dbms_output.put_line('no data found raise from inner block');
WHEN OTHERS THEN
dbms_output.put_line ('outer block error;'||sqlcode||chr(10)||sqlerrm);
END DEPT_EMPLOYEE_INFO;
execute DEPT_EMPLOYEE_INFO(30) ::is working but I want to trap exception for
execute DEPT_EMPLOYEE_INFO(30A);
Input parameter is number data type but if some one passing any thing else then how we would trap exception?
If I execute procedure like
execute DEPT_EMPLOYEE_INFO(30A);
then I get error message, how to handle this exception?