I am able to retrieve a list of all procedures by querying dba_procedures. However I am only able to extract the procedure names. But I also need their parameters.
Now, I know that I can access the "text source of the stored objects accessible to the current user" by querying the all_source table.
However is there any other way to retrieve the parameters of a procedure?
db_procedures
view or table in Oracle – a_horse_with_no_name