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

Thread: Packages

  1. #1
    Join Date
    Mar 2001
    Posts
    54
    Does anybody can tell me to find out the procedures available in a packages.

    Ex: I know the package name like DBMS_SQL.

    I would like to know the procedures which is available under the packages


    Thankx
    M.Jeyaseelan

  2. #2
    Join Date
    Jul 2000
    Posts
    296
    In SQL*PLus Release 8 you can use DESC:
    DESC your_package

    Or you can use ALL_SOURCE view:
    SELECT text
    FROM all_source
    WHERE type = 'PACKAGE'
    AND name = 'YOUR_PACKAGE'
    ORDER BY line;

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