ExchangeMailboxEntry table status.
Hello Guys,
Can some on help me with the White paper or Tech Note as what does 'ExchangeMailboxEntry' has in it.
To my understanding it has the info of all the Provisional mailbox entry in it.
Now I need to make some clear understanding of the table and the Exchange Provisional group.
1. When I enable a user for archive his entry is listed in ExchangeMailboxEntry after he is provision.
2. When I delete the users account from AD and MS Exchange but the Inactive Archive stays in Enterprise Vault Server what will happen
a. Will ExchangeMailboxEntry table retain the archive info
b. Will it remove the infomation after Provison task is completed.
c. If yes then how do I take the count of the Inactive archive with the DN value (so I can check which OU the archive belongs).
I tried the script
Select * from archive where archivename not in (select a.archivename from archive a,exchangemailboxentry b where a.archivename = b.mbxdisplayname)
Which shows inactive archive but I would like to add the DN vaule coloum from another table, secound I also ran the script as
Select count (*) from Archive - which shows me list total archives. (Active and Inactive).
Regards,
Gurmeet Singh Kohli
- Like I said, once the entry is removed from ExchangeMailboxEntry you can't use the LegacyExchangeDN to query EV as the EME table is the ONLY table that contains the DN The ExchangeMailboxEntry table is updated by the Provisioning task which by default runs once a day automatically or you can set it to run twice a day, and you can also run it manually To get a list of inactive mailboxes run the following query SELECT MbxDisplayName, LegacyMbxDN FROM ExchangeMailboxEntry WHERE PolicyTargetGroupEntryId IS NULL