Command to retrieve all SP names fro mCLLP

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • yogeeswar
    New Member
    • Feb 2007
    • 9

    Command to retrieve all SP names fro mCLLP

    HI All
    I want to retrieve the all the Stored Procedures names from CLP is there any command for it?
  • skchonghk
    New Member
    • Jan 2007
    • 6

    #2
    Originally posted by yogeeswar
    HI All
    I want to retrieve the all the Stored Procedures names from CLP is there any command for it?
    SELECT procschema, procname FROM syscat.PROCEDUR ES;

    Comment

    Working...