SYSCAT.PROCEDURES is the catalog view you will have to look for information ...
SYSCAT.PROCPARMS (have I spelt is right?) is another view ...
If you are on V8,
SYSCAT.ROUTINES and SYSCAT.ROUTINEPARMS will have the information
HTH
Sathyaram
Quote:
Originally posted by ARWinner
The Stored Procedure name is formed just like any other object in the database. It has a qualifier (schema) and its name. The Stored Procedures are in the system catalog and are maintained automatically by the database whenever they are created or dropped, so you do not need to know anything specific about how they are entered int the tables. To get authorized to call a Stored Procedure, you must be given the EXECUTE privilege. Look at the GRANT statement to see the proper way to to this. How it is called form the Application depends on the language the Application is written in.
HTH
Andy
|