I need to get the parameter definitions of a PL/SQL procedure.
On MS SQL, we use Information_schema.Parameters; what is the counterpart ( if any ) in Oracle?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Most (if not all) of the same data can be accessed in Oracle from the ALL_ARGUMENTS data dictionary table.
ALL_ARGUMENTSshows you the arguments for all the procedures that you have permission to execute.USER_ARGUMENTSshows you the arguments for all the procedures that you own. AndDBA_ARGUMENTSshows you the arguments for all the procedures that exist in the database but you need additional privileges to access theDBA_*views.