Question How To Find The User Connected To Sql Secondary Broker Alone

Reddy P

New Member
Hi ,

I am using progress 4GL databse as a primary one and sql as secondar broker by using -m3 parameter . I would like to know all the users who are connected to sql server alone . could anyone of you please help on this ..??
 

TomBascom

Curmudgeon
If you are on a modern release of Progress SQL connections are indicated by _Connect._Connect-Client = "SQLC".

You can get a list of SQL connections with:

Code:
for each dictdb._Connect no-lock where _connect-client begins "SQ":
  display _Connect-id _Connect-usr _Connect-name _Connect-client.
end.
 

Reddy P

New Member
Hi TomBascom,

Thank You for your timely response. I am using 10.2B version of progress ..I ran the code but didnt get any output on my screen.
 

TomBascom

Curmudgeon
Also... 10.2b is the new 9.1e

Before long I will feel compelled to tag all mentions of 10.2b as "ancient, obsolete and unsupported".
 
Top