Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Error while trying to INSERT RECORD -ORA-1400

Re: Error while trying to INSERT RECORD -ORA-1400

From: Maikel Alderhout <0alderhout01_at_almere.flnet.nl>
Date: 1997/06/19
Message-ID: <33A9BDA2.7EF6@almere.flnet.nl>#1/1

You must use the update statment instead of the insert statment in the procedure give_bonus.

So replace the insert statement into:

update emp
set comm = v_bonus
where empno = empno_in;

Maikel Received on Thu Jun 19 1997 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US