Blog Post

Enterprise Data Services Community Blog
1 MIN READ

Mbx Archiving State / Mbx Exchange State

Wayne_Humphrey's avatar
15 years ago
Often the question of what is the different states of MbxArchivingState and MbxExchangeState in the ExchangeMailboxEntry table.

The Archiving State translates as follows:

0 = Not Enabled
1 = Enabled
2 = Disabled
3 = Re-Link

To view the Archiving State you can use the following:

SELECT count(MbxArchivingState) as '# Mailboxes',
MbxArchivingState as 'Archiving State'
FROM ExchangeMailboxEntry
GROUP BY MbxArchivingState

The Exchange State translates as follows: 
 

0 = Normal
1 = Hidden
2 = Deleted

To view the Exchange State you can use the following:

SELECT count(MbxExchangeState) as '# Mailboxes',
MbxExchangeState as 'Exchange State'
FROM ExchangeMailboxEntry
GROUP BY MbxExchangeState

Published 15 years ago
Version 1.0

3 Comments

  • Hi all,

    Has the vaule of "MbxExchangeState" in the " ExchangeMailboxEntry" changed? in my organizazion I'm getting 2 = Hidden and 1 = Deleted

    Our inicial instalation was Enterprise Vault vs 9.

  • Hi there,

    you are absolutely right. There was a comment in the past correcting the statement from the original post but this one has since been removed. 

    MbxExchangeState = 2 = Hidden

    MbxExchangeState = 1 = Deleted 

     

    Regards

    Marc