PLS-00363: expression cannot be used as an assignment target
Hi,
Oralce9.2
when I run the insert procedure I get the below error:
Procedure
--------------
PROCEDURE proc_one_insert(col1 IN OUT numeric,
col2 IN num,
col3 IN numeric
);
BEGIN
execute immediate proc_one_insert(2,1,111);
END;
/
Error
------
PLS-00363: expression '2' cannot be used as an assignment target
How to solve the above error ?
With Regards
Edited by: user640001 on Dec 2, 2010 3:04 AM