cancel
Showing results for 
Search instead for 
Did you mean: 

Where do I find the total number of licensed users?

jlg
Level 4
Where in Vault do I find that total number of licensed users that have been enabled?  I need to make certain we are compliant.

1 ACCEPTED SOLUTION

Accepted Solutions

TonySterling
Moderator
Moderator
Partner    VIP    Accredited Certified
The easiest way would be to run a sql query.

Use EnterpriseVaultDirectory
Select count(*)
from exchangemailboxentry
where MbxArchivingState = 1

That will give you your number of enabled users.

Here is a technote for reference:


http://support.veritas.com/docs/309166

How to view a report of disabled, or new user mailboxes from SQL
Details:
On occasion a list or report of new, disabled and enabled users may be needed. This can be done from the Vault Directory SQL server. A SQL query can send the results to text or to file Report Viewer .rpt format..

For disabled mailboxes
SELECT *
FROM ExchangeMailboxEntry
Where MbxArchivingState = '2'

For new mailboxes
SELECT *
FROM ExchangeMailboxEntry
Where MbxArchivingState = '0'

For enabled mailboxes
SELECT *
FROM ExchangeMailboxEntry
Where MbxArchivingState = '1'

View solution in original post

4 REPLIES 4

TonySterling
Moderator
Moderator
Partner    VIP    Accredited Certified
The easiest way would be to run a sql query.

Use EnterpriseVaultDirectory
Select count(*)
from exchangemailboxentry
where MbxArchivingState = 1

That will give you your number of enabled users.

Here is a technote for reference:


http://support.veritas.com/docs/309166

How to view a report of disabled, or new user mailboxes from SQL
Details:
On occasion a list or report of new, disabled and enabled users may be needed. This can be done from the Vault Directory SQL server. A SQL query can send the results to text or to file Report Viewer .rpt format..

For disabled mailboxes
SELECT *
FROM ExchangeMailboxEntry
Where MbxArchivingState = '2'

For new mailboxes
SELECT *
FROM ExchangeMailboxEntry
Where MbxArchivingState = '0'

For enabled mailboxes
SELECT *
FROM ExchangeMailboxEntry
Where MbxArchivingState = '1'

AndrewB
Moderator
Moderator
Partner    VIP    Accredited
You're saying you just want to make sure you're compliant. I recall that if your enabled user count exceeds your licenseing, EV will let you know with a nice popup notification every time you open the admin console.

Wayne_Humphrey
Level 6
Partner Accredited Certified
Andrew,

The VAC  does not tell you when you have exceeded your licensing.  

AndrewB
Moderator
Moderator
Partner    VIP    Accredited
Sorry that is my mistake. I recalled incorrectly :\