Preparation 
  Connect to the desired database
    db2 connect to <dbname>
  Create the stored procedures
    db2 -td@ -f db2perf_utils.db2
Use
  Translation UDFs
    Simply call them in SQL to translate fields returned from snapshot table functions & event monitors
      db2 "select db2perf_<UDF>2str(<element value>) from ... "

      db2perf_lkobj2str
      db2perf_lkmode2str
      db2perf_lkstat2str
      db2perf_tabtyp2str
      db2perf_apstat2str
      db2perf_tbstyp2str
      db2perf_tbscon2str

  'Quiet drop' function
      db2 "call db2perf_quiet_drop( <suffix of DROP statement > )"
    for example
      db2 "call db2perf_quiet_drop('procedure db2perf_crmsg')"


For more information, see db2perf.pdf
