cancel
Showing results for 
Search instead for 
Did you mean: 

Mbx Archiving State / Mbx Exchange State

Wayne_Humphrey
Level 6
Partner Accredited Certified
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

2 Comments
Tonaco_pt
Moderator
Moderator
Partner    VIP    Accredited

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.

Marcde
Moderator
Moderator
Partner    VIP    Accredited

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