Re: How to get the list of variables and constants declared in a Oracle Package?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • padderz

    Re: How to get the list of variables and constants declared in a Oracle Package?


    Since when did DESC list variables and constants declared in a package?

    --
    Posted via http://dbforums.com
  • Tom

    #2
    Re: How to get the list of variables and constants declared in a Oracle Package?

    Try:

    select * from USER_ARGUMENTS
    where package_name = 'the_package_na me'
    and object_name = 'the_function_n ame'

    Comment

    Working...