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?
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.