I was hoping to do so from within a command file. Mike
________________________________ From: Dan Goldberg <[email protected]> To: RBASE-L Mailing List <[email protected]> Sent: Monday, July 30, 2012 6:07 PM Subject: [RBASE-L] - Re: how to capture the number of users on a network You can use rbadmin. http://www.rbaseadmin.com/ Dan From: Michael J. Sinclair Sent: Monday, July 30, 2012 2:39 PM To: RBASE-L Mailing List Subject: [RBASE-L] - Re: how to capture the number of users on a network Is there a similar function to determine the name(s) of the users that are connected? Mike ________________________________ From: A. Razzak Memon <[email protected]> To: RBASE-L Mailing List <[email protected]> Sent: Monday, July 30, 2012 4:40 PM Subject: [RBASE-L] - Re: how to capture the number of users on a network At 03:59 PM 7/30/2012, mike epstein sony viao office wrote: >Is there a function that could be used to capture the number of >users on a network? > >SET VAR vcheckusers INTEGER =? (???????(??????)) Mike, You mean the number of users on a network, connected to a shared database? Correct? If that is the case... Here's how: SET VAR vConnections INTEGER = 0 SET VAR vConnections = (INT(CVAL('CONNECTIONS'))) The resulting value (vConnections) will return the number of concurrent R:BASE connections/sessions/users to a CONNECTed database. That's all there is to it! Very Best R:egards, Razzak. www.rbase.com www.facebook.com/rbase

