Entering content frame

 DBPROCEDURES 

Using the system table DBPROCEDURES, you can determine the following database information, among other things:

All database procedures and their comments generated in the last 10 days
SELECT owner, dbprocname, comment
  FROM DOMAIN.DBPROCEDURES
    WHERE createdate >= subdate(date,10)

Parameters of a database procedure: see DBPROCPARAMS

 

Leaving content frame