I just recently upgraded our Oracle database and my Oracle client to 10.2.0.3.0.
Now I am getting errors that I have not encountered prior to upgrade (from 10.2.0.0).
First on SQL Plus, I tried to run a sql file (select) and I get either SP2-0024 Nothing to Save or SP2-0023 String Not Found.
Secondly, when I tried to compile a stored procedure I get a warning (did it compile) PLW-07204.
p_Loc_ID NUMBER(8);
p_Loc_Name Varchar2,
Select loc_ID ('this is the line getting the error)
into p_Loc_ID
from Location
where upper(loc_name) = p_Loc_Name;
loc_ID and loc_name from Location table are the same datatype as p_loc_ID and p_Loc_Name resp.
Any help will be greatly appreciated.
Now I am getting errors that I have not encountered prior to upgrade (from 10.2.0.0).
First on SQL Plus, I tried to run a sql file (select) and I get either SP2-0024 Nothing to Save or SP2-0023 String Not Found.
Secondly, when I tried to compile a stored procedure I get a warning (did it compile) PLW-07204.
p_Loc_ID NUMBER(8);
p_Loc_Name Varchar2,
Select loc_ID ('this is the line getting the error)
into p_Loc_ID
from Location
where upper(loc_name) = p_Loc_Name;
loc_ID and loc_name from Location table are the same datatype as p_loc_ID and p_Loc_Name resp.
Any help will be greatly appreciated.