Is there any easy way to query a stored procedure (Oracle - PL / SQL) for the parameters that it expects?
I know that I can query USER_SOURCE to get the whole procedure, but I would have to parse the whole procedure, and if the parameter is of the type [table].[column]%TYPE , I would have to query the table schema as well.
Either using only sql or through ODP.Net.
source share