Question : execution of procedure


Is this statement correct

exec conversion_pkg.referral_conv(30);

the procedure has in parameter as Number

This is saying as "Invalid sql statement", can someone help me

Answer : execution of procedure

You are missing the ' ' to specify 30 is a value and not something else.
try this
exec conversion_pkg.referral_conv('30');
Regards,
Random Solutions  
 
programming4us programming4us