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

Thread: packages, functions,etc

  1. #1
    Join Date
    Mar 2001
    Posts
    82
    Is there any way that I can look look into packages, functions, procedures? e.g. like dba_view that will allow me to look into the contens of a package,functions,etc.

    I know it can be done using OEM but currently, I do not have the OEM.

  2. #2
    Join Date
    Feb 2001
    Posts
    184
    Yes,

    Select Text From Dba_Source
    Where Owner = Upper('&Owner_name')
    and Name = Upper('&NameofPack')
    and Type = Upper('&Type');

    You need to Know ythe user name if it's not in Your Schema, The Procedure, Function or Package Name.

    The Type id Whether it is Procedure, Function, package Body or Package.

    You can use User_Source, If it's in Your Schema.

    Thanks

  3. #3
    Join Date
    Oct 2000
    Location
    Saskatoon, SK, Canada
    Posts
    3,925
    I think that you can use the dba_source to view these informtions.

    Sam
    Thanx
    Sam



    Life is a journey, not a destination!


  4. #4
    Join Date
    Mar 2001
    Posts
    82
    what if you need to modify the package? How do you get the package so that you can do the modification?

  5. #5
    Join Date
    Feb 2001
    Posts
    184
    Better to use any Third part Tool, That makes life easier, Otherwise you need to spool the file and save as .sql and make the changes and Compile.

    Thanks

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