Kbase P106408: How to monitor BI activity from 4GL.
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  09/08/2010 |
|
Status: Verified
GOAL:
How to monitor BI activity from 4GL.
GOAL:
How to use VST's to monitor BI activity.
FIX:
ASSIGN CURRENT-WINDOW:WIDTH = 50. FOR EACH _ActBiLog WITH SIDE-LABELS WIDTH 50
TITLE " BI Log Activity ":
DISPLAY _BiLog-EbuffWaits SKIP
_BiLog-BIWWrites SKIP
_BiLog-TotalWrts SKIP
_BiLog-PartialWrts SKIP
_BiLog-BIWWrites / _BiLog-TotalWrts * 100
LABEL "BI writes/Total writes %"
_BiLog-PartialWrts / _BiLog-TotalWrts * 100
LABEL "Partial writes/Total writes %"
.
END.