DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: view procedure names of packages

  1. #1
    Join Date
    Jun 2003
    Posts
    1

    view procedure names of packages

    is there a method to list all procedures/functions of certain packages.

    i know about dba_source but want to find an easier way

    thx

  2. #2
    Join Date
    Apr 2001
    Location
    Czechia
    Posts
    712
    In SQL*Plus, type "desc package_name".
    Ales
    The whole difference between a little boy and an adult man is the price of toys

  3. #3
    Join Date
    Jun 2000
    Location
    Madrid, Spain
    Posts
    7,447
    for package´s proc & functions

    select distinct object_name
    from all_arguments
    where package_name='DBMS_STATS';

    for package´s procs & fncion´s arguments

    select object_name, argument_name
    from all_arguments
    where package_name='DBMS_STATS'

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width