Re: [U2] [UD] Determining number of users licensed

2012-09-14 Thread Symeon Breen
Not on UD



-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson
Sent: 12 September 2012 21:59
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] [UD] Determining number of users licensed

I thought system(36) shows the number of licenses
 

 

 

-Original Message-
From: Kevin King ke...@precisonline.com
To: U2 Users List u2-users@listserver.u2ug.org
Sent: Wed, Sep 12, 2012 1:38 pm
Subject: Re: [U2] [UD] Determining number of users licensed


Can you parse it out of the listusers OS command?

On Wed, Sep 12, 2012 at 2:24 PM, dean.armbrus...@ferguson.com wrote:

 Is there a way to programmatically determine the number of licensed 
 users allowed?

 SYSTEM(514) reports the number of non-phantom users currently logged 
 in, which is essentially the number of licenses in use.  I want to 
 compare that against the number of users allowed in a monitoring 
 program.  I want to know if we're close to the limit before we run 
 out.  The number of licenses varies by server.

 Colleagues have suggested using grep on udtconfig for NUSERS, but that 
 is not the same thing.  Since we generally have 100-200 phantom 
 processes, we sometimes configure to a size larger than the license 
 limit to have room for those phantom processes.

 UniData 7.3.1
 HPUX 11.31
 Dean Armbruster
 Information Technology, System Analyst Ferguson Enterprises, Inc.
 12500 Jefferson Avenue * Newport News * VA * 23602-4314
 T: +1 (757) 989 2839 * F: +1 (757) 989 2801 
 www.ferguson.comhttp://www.wolseley.com/

 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

 
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
-
No virus found in this message.
Checked by AVG - www.avg.com
Version: 2012.0.2221 / Virus Database: 2437/5264 - Release Date: 09/12/12

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [UD] Determining number of users licensed

2012-09-13 Thread Dean.Armbruster
And the winner is:

PORT.STATUS

It is quick and easy.  My program executes it using its own @USERNO and parses 
it out.  With no options, it returns instantly.

LISTUSER and listuser were too slow.  It takes 20+ seconds for them to return 
from an captured EXECUTE/PCPERFORM when it has to output our 6000+ sessions.  
I'd probably grep the smm.log if I were writing a unix script or program.  
Having a SYSTEM() call to get this is on the wish list.

My thanks to Kevin, Dan, Colin, and Rod for your suggestions.

Dean Armbruster
System Analyst
757-989-2839

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of 
dean.armbrus...@ferguson.com
Sent: Wednesday, September 12, 2012 16:24
To: u2-users@listserver.u2ug.org
Subject: [U2] [UD] Determining number of users licensed

Is there a way to programmatically determine the number of licensed users 
allowed?

SYSTEM(514) reports the number of non-phantom users currently logged in, which 
is essentially the number of licenses in use.  I want to compare that against 
the number of users allowed in a monitoring program.  I want to know if we're 
close to the limit before we run out.  The number of licenses varies by server.

Colleagues have suggested using grep on udtconfig for NUSERS, but that is not 
the same thing.  Since we generally have 100-200 phantom processes, we 
sometimes configure to a size larger than the license limit to have room for 
those phantom processes.

UniData 7.3.1
HPUX 11.31
Dean Armbruster
Information Technology, System Analyst
Ferguson Enterprises, Inc.
12500 Jefferson Avenue * Newport News * VA * 23602-4314
T: +1 (757) 989 2839 * F: +1 (757) 989 2801
www.ferguson.comhttp://www.wolseley.com/

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [UD] Determining number of users licensed

2012-09-13 Thread Kate Stanton
As long as only 1 user is using it: watch for this (2 users in quick
succession):

PORT.STATUS started at 14-Sep-2012 09:53:40
Finished at 14-Sep-2012 09:53:40
PORT.STATUS is currently being run by another user, try again later.


On 14 September 2012 09:38, dean.armbrus...@ferguson.com wrote:

 And the winner is:

 PORT.STATUS

 It is quick and easy.  My program executes it using its own @USERNO and
 parses it out.  With no options, it returns instantly.

 LISTUSER and listuser were too slow.  It takes 20+ seconds for them to
 return from an captured EXECUTE/PCPERFORM when it has to output our 6000+
 sessions.  I'd probably grep the smm.log if I were writing a unix script or
 program.  Having a SYSTEM() call to get this is on the wish list.

 My thanks to Kevin, Dan, Colin, and Rod for your suggestions.

 Dean Armbruster
 System Analyst
 757-989-2839

 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org [mailto:
 u2-users-boun...@listserver.u2ug.org] On Behalf Of
 dean.armbrus...@ferguson.com
 Sent: Wednesday, September 12, 2012 16:24
 To: u2-users@listserver.u2ug.org
 Subject: [U2] [UD] Determining number of users licensed

 Is there a way to programmatically determine the number of licensed users
 allowed?

 SYSTEM(514) reports the number of non-phantom users currently logged in,
 which is essentially the number of licenses in use.  I want to compare that
 against the number of users allowed in a monitoring program.  I want to
 know if we're close to the limit before we run out.  The number of licenses
 varies by server.

 Colleagues have suggested using grep on udtconfig for NUSERS, but that is
 not the same thing.  Since we generally have 100-200 phantom processes, we
 sometimes configure to a size larger than the license limit to have room
 for those phantom processes.

 UniData 7.3.1
 HPUX 11.31
 Dean Armbruster
 Information Technology, System Analyst
 Ferguson Enterprises, Inc.
 12500 Jefferson Avenue * Newport News * VA * 23602-4314
 T: +1 (757) 989 2839 * F: +1 (757) 989 2801
 www.ferguson.comhttp://www.wolseley.com/

 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users




-- 
Kate Stanton
Walstan Systems Ltd
4 Kelmarna Ave, Herne Bay, Auckland 1011, New Zealand
Phone: + 64 9 360 5310  Mobile: + 64 21 400 486
Email: k...@walstan.com
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] [UD] Determining number of users licensed

2012-09-12 Thread Dean.Armbruster
Is there a way to programmatically determine the number of licensed users 
allowed?

SYSTEM(514) reports the number of non-phantom users currently logged in, which 
is essentially the number of licenses in use.  I want to compare that against 
the number of users allowed in a monitoring program.  I want to know if we're 
close to the limit before we run out.  The number of licenses varies by server.

Colleagues have suggested using grep on udtconfig for NUSERS, but that is not 
the same thing.  Since we generally have 100-200 phantom processes, we 
sometimes configure to a size larger than the license limit to have room for 
those phantom processes.

UniData 7.3.1
HPUX 11.31
Dean Armbruster
Information Technology, System Analyst
Ferguson Enterprises, Inc.
12500 Jefferson Avenue * Newport News * VA * 23602-4314
T: +1 (757) 989 2839 * F: +1 (757) 989 2801
www.ferguson.comhttp://www.wolseley.com/

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [UD] Determining number of users licensed

2012-09-12 Thread Kevin King
Can you parse it out of the listusers OS command?

On Wed, Sep 12, 2012 at 2:24 PM, dean.armbrus...@ferguson.com wrote:

 Is there a way to programmatically determine the number of licensed users
 allowed?

 SYSTEM(514) reports the number of non-phantom users currently logged in,
 which is essentially the number of licenses in use.  I want to compare that
 against the number of users allowed in a monitoring program.  I want to
 know if we're close to the limit before we run out.  The number of licenses
 varies by server.

 Colleagues have suggested using grep on udtconfig for NUSERS, but that is
 not the same thing.  Since we generally have 100-200 phantom processes, we
 sometimes configure to a size larger than the license limit to have room
 for those phantom processes.

 UniData 7.3.1
 HPUX 11.31
 Dean Armbruster
 Information Technology, System Analyst
 Ferguson Enterprises, Inc.
 12500 Jefferson Avenue * Newport News * VA * 23602-4314
 T: +1 (757) 989 2839 * F: +1 (757) 989 2801
 www.ferguson.comhttp://www.wolseley.com/

 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [UD] Determining number of users licensed

2012-09-12 Thread Dan Goble
You can use the PORT.STATUS command.   It shows the number of user licenses and 
the number of sessions used


Dan Goble | Senior Systems Engineer

Interline Brands, Inc.
804 East Gate Drive Suite 100, Mount Laurel, NJ 08054
Office: 856.533.3110 | Mobile: 609.792.6855
E-mail: dan.go...@interlinebrands.com | Website: www.interlinebrands.com


This e-mail and any files transmitted with it are confidential and intended 
solely for the individual or entity to whom they are addressed.  Please notify 
the sender immediately by e-mail if you have received this e-mail in error and 
delete all copies of this message.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Kevin King
Sent: Wednesday, September 12, 2012 4:39 PM
To: U2 Users List
Subject: Re: [U2] [UD] Determining number of users licensed

Can you parse it out of the listusers OS command?

On Wed, Sep 12, 2012 at 2:24 PM, dean.armbrus...@ferguson.com wrote:

 Is there a way to programmatically determine the number of licensed
 users allowed?

 SYSTEM(514) reports the number of non-phantom users currently logged
 in, which is essentially the number of licenses in use.  I want to
 compare that against the number of users allowed in a monitoring
 program.  I want to know if we're close to the limit before we run
 out.  The number of licenses varies by server.

 Colleagues have suggested using grep on udtconfig for NUSERS, but that
 is not the same thing.  Since we generally have 100-200 phantom
 processes, we sometimes configure to a size larger than the license
 limit to have room for those phantom processes.

 UniData 7.3.1
 HPUX 11.31
 Dean Armbruster
 Information Technology, System Analyst Ferguson Enterprises, Inc.
 12500 Jefferson Avenue * Newport News * VA * 23602-4314
 T: +1 (757) 989 2839 * F: +1 (757) 989 2801
 www.ferguson.comhttp://www.wolseley.com/

 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [UD] Determining number of users licensed

2012-09-12 Thread Colin Alfke
I've tracked the largest number of users logged in - but I didn't have to
worry about the max.

I had thought it was in the SYSTEM() somewhere - but a quick look through
help didn't show it.

You could try parsing it out of the @udtbin\smm.log file... It's in there
for windows - not sure about HPUX though.

good luck
Colin

-Original Message-
From: dean.armbrus...@ferguson.com
Sent: September 12, 2012 2:24 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] [UD] Determining number of users licensed

Is there a way to programmatically determine the number of licensed users
allowed?

SYSTEM(514) reports the number of non-phantom users currently logged in,
which is essentially the number of licenses in use.  I want to compare that
against the number of users allowed in a monitoring program.  I want to know
if we're close to the limit before we run out.  The number of licenses
varies by server.

Colleagues have suggested using grep on udtconfig for NUSERS, but that is
not the same thing.  Since we generally have 100-200 phantom processes, we
sometimes configure to a size larger than the license limit to have room for
those phantom processes.

UniData 7.3.1
HPUX 11.31
Dean Armbruster


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [UD] Determining number of users licensed

2012-09-12 Thread Wjhonson
I thought system(36) shows the number of licenses
 

 

 

-Original Message-
From: Kevin King ke...@precisonline.com
To: U2 Users List u2-users@listserver.u2ug.org
Sent: Wed, Sep 12, 2012 1:38 pm
Subject: Re: [U2] [UD] Determining number of users licensed


Can you parse it out of the listusers OS command?

On Wed, Sep 12, 2012 at 2:24 PM, dean.armbrus...@ferguson.com wrote:

 Is there a way to programmatically determine the number of licensed users
 allowed?

 SYSTEM(514) reports the number of non-phantom users currently logged in,
 which is essentially the number of licenses in use.  I want to compare that
 against the number of users allowed in a monitoring program.  I want to
 know if we're close to the limit before we run out.  The number of licenses
 varies by server.

 Colleagues have suggested using grep on udtconfig for NUSERS, but that is
 not the same thing.  Since we generally have 100-200 phantom processes, we
 sometimes configure to a size larger than the license limit to have room
 for those phantom processes.

 UniData 7.3.1
 HPUX 11.31
 Dean Armbruster
 Information Technology, System Analyst
 Ferguson Enterprises, Inc.
 12500 Jefferson Avenue * Newport News * VA * 23602-4314
 T: +1 (757) 989 2839 * F: +1 (757) 989 2801
 www.ferguson.comhttp://www.wolseley.com/

 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

 
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [UD] Determining number of users licensed

2012-09-12 Thread Baakkonen, Rodney A (Rod) 46K
 Are you on UNIX by chance? The first couple of lines of listuser tell you:


# listuser | head

Licensed(UDT+CP)/Effective  Udt Sql iPhtm   Pooled  Total

( 875 + 0   ) / 875 511 45  2   0   558

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Colin Alfke
Sent: Wednesday, September 12, 2012 3:54 PM
To: 'U2 Users List'
Subject: Re: [U2] [UD] Determining number of users licensed

I've tracked the largest number of users logged in - but I didn't have to
worry about the max.

I had thought it was in the SYSTEM() somewhere - but a quick look through
help didn't show it.

You could try parsing it out of the @udtbin\smm.log file... It's in there
for windows - not sure about HPUX though.

good luck
Colin

-Original Message-
From: dean.armbrus...@ferguson.com
Sent: September 12, 2012 2:24 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] [UD] Determining number of users licensed

Is there a way to programmatically determine the number of licensed users
allowed?

SYSTEM(514) reports the number of non-phantom users currently logged in,
which is essentially the number of licenses in use.  I want to compare that
against the number of users allowed in a monitoring program.  I want to know
if we're close to the limit before we run out.  The number of licenses
varies by server.

Colleagues have suggested using grep on udtconfig for NUSERS, but that is
not the same thing.  Since we generally have 100-200 phantom processes, we
sometimes configure to a size larger than the license limit to have room for
those phantom processes.

UniData 7.3.1
HPUX 11.31
Dean Armbruster


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

--
CONFIDENTIALITY NOTICE: If you have received this email in error,
please immediately notify the sender by e-mail at the address shown.  
This email transmission may contain confidential information.  This 
information is intended only for the use of the individual(s) or entity to 
whom it is intended even if addressed incorrectly.  Please delete it from 
your files if you are not the intended recipient.  Thank you for your 
compliance.  Copyright (c) 2012 Cigna
==

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [UD] Determining number of users licensed

2012-09-12 Thread Eric Neu
Windows/UniData listuser has it as well

:listuser

 

Licensed/Effective # of Users   Udt Sql iPhantom
Total   
 

  68 / 68   51  0   0
51  
 






-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Baakkonen,
Rodney A (Rod) 46K
Sent: Wednesday, September 12, 2012 2:13 PM
To: 'U2 Users List'
Subject: Re: [U2] [UD] Determining number of users licensed

 Are you on UNIX by chance? The first couple of lines of listuser tell
you:


# listuser | head

Licensed(UDT+CP)/Effective  Udt Sql iPhtm   Pooled
Total

( 875 + 0   ) / 875 511 45  2   0
558

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Colin Alfke
Sent: Wednesday, September 12, 2012 3:54 PM
To: 'U2 Users List'
Subject: Re: [U2] [UD] Determining number of users licensed

I've tracked the largest number of users logged in - but I didn't have
to worry about the max.

I had thought it was in the SYSTEM() somewhere - but a quick look
through help didn't show it.

You could try parsing it out of the @udtbin\smm.log file... It's in
there for windows - not sure about HPUX though.

good luck
Colin

-Original Message-
From: dean.armbrus...@ferguson.com
Sent: September 12, 2012 2:24 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] [UD] Determining number of users licensed

Is there a way to programmatically determine the number of licensed
users allowed?

SYSTEM(514) reports the number of non-phantom users currently logged in,
which is essentially the number of licenses in use.  I want to compare
that against the number of users allowed in a monitoring program.  I
want to know if we're close to the limit before we run out.  The number
of licenses varies by server.

Colleagues have suggested using grep on udtconfig for NUSERS, but that
is not the same thing.  Since we generally have 100-200 phantom
processes, we sometimes configure to a size larger than the license
limit to have room for those phantom processes.

UniData 7.3.1
HPUX 11.31
Dean Armbruster


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


--
CONFIDENTIALITY NOTICE: If you have received this email in error, please
immediately notify the sender by e-mail at the address shown.  
This email transmission may contain confidential information.  This
information is intended only for the use of the individual(s) or entity
to whom it is intended even if addressed incorrectly.  Please delete it
from your files if you are not the intended recipient.  Thank you for
your compliance.  Copyright (c) 2012 Cigna

==

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users