I wrote this procedure:
create or replace PROCEDURE num_mandati ( persona IN parlamento2018.parlamentari.cf%type default '1234567890ABCDEF') IS
nomePersona parlamentari.nome%type;
cognomePersona parlamentari.cognome%type;
n_codfis NUMBER := 0;
nessunParlamentare EXCEPTION;
BEGIN
dbms_output.put_line('persona: ' ||persona);
END num_mandati;
In the body of procedure there is an output instruction but the default value of the parameter 'persona' is not displayed. The type of the column cf of the parlamentari's table is varchar2(16). Why the parameter's value is not displayed?