Kbase P4182: 4GL: How to know who is connected to a Progress database?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  03/04/2008 |
|
Status: Verified
GOAL:
4GL: How to know who is connected to a Progress database?
FACT(s) (Environment):
Progress 9.x
OpenEdge 10.x
All Supported Operating Systems
FIX:
Query the _connect table as shown below:
FOR EACH _connect NO-LOCK:
DISPLAY _connect._connect-name _connect._connect-pid.
END.