Skip to content

Instantly share code, notes, and snippets.

@jgebal
jgebal / get_call_params.sql
Created June 15, 2018 01:15
Little utility to get call procedure/function parameter names in PLSQL
create or replace package checker is
subtype t_exception_no is pls_integer range -20500..-20000;
c_null_value constant t_exception_no := -20001;
procedure raise_if_null(p_value varchar2);
end;
/