Jeffrey Kevin Pry
Jeffrey Kevin Pry

Reputation: 3296

Get Package Methods and Parameters from Oracle

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

I know there is a view or table that provides this, but I can't seem to remember what it is.

NOTE: I am not looking for getting a list of packages from user_objects, rather the data type and parameter name for each procedure in a package.

Thanks,

Jeffrey Kevin Pry

Upvotes: 6

Views: 4544

Answers (1)

Tony Andrews
Tony Andrews

Reputation: 132600

The view you need is USER_ARGUMENTS (or ALL_ARGUMENTS).

Upvotes: 12

Related Questions