I tried using the below code , but it didnt compile , is defining plsql procedure with parameter values having specific lengths possible in PLSQL.
create or replace procedure test_proc1(tid in number(2))
is
begin
null;
end;
I tried using the below code , but it didnt compile , is defining plsql procedure with parameter values having specific lengths possible in PLSQL.
create or replace procedure test_proc1(tid in number(2))
is
begin
null;
end;
You should'nt specify the size of number in procedure argument (idem for varchar2)