Get package methods and parameters from Oracle

I am looking for a query for Oracle to get all the parameters for an Oracle package / procedure.

I know there is a view or table that provides this, but I cannot remember what it is.

NOTE. I'm not looking to get a list of packages from user_objects, not the data type and parameter name for each procedure in the package.

Thanks,

Jeffrey Kevin Pry

+6
source share
1 answer

You need USER_ARGUMENTS (or ALL_ARGUMENTS ) to view it.

+11
source

Source: https://habr.com/ru/post/892021/


All Articles