How do I list all stored procedures in Informix?

CheeseConQueso picture CheeseConQueso · Aug 5, 2011 · Viewed 20.5k times · Source

I'm looking for a way to list all the stored procedures in my database running on Informix.

Is there a table in the "informix".* database that lists stored procedures along with detail information about them?

Answer

Adriano Carneiro picture Adriano Carneiro · Aug 5, 2011

Yes, there is. It's called sysprocedures. Try this to see all there's to see:

select * from sysprocedures

For more information on what detailed information is available, read about sysprocedures and sysprocbody and sysproccolumns.