10-16-2013 02:39 AM
Hi,
We have a EV 10.0.1 server where we could export archives to original mailbox still this morning. Suddenly it stopped woorking and throwing the following error
Solved! Go to Solution.
10-16-2013 03:10 AM
Cause :
DefaultVaultId value is empty or NULL and ADMbxDN value is NULL on the ExchangeMailboxEntry table of the EnterpriseVaultDirectory database
By removing these mailboxes, the archive should work and complete normally.
Solution :
1) Backup the ExchangeMailboxEntry table
2)Run the following query on the SQL to verify the affected users
USE EnterpriseVaultDirectory
SELECT * FROM ExchangeMailboxEntry
WHERE DefaultVaultId <> '' AND ADMbxDN IS NULL
3) Delete the affected users with the following query
USE EnterpriseVaultDirectory
DELETE FROM ExchangeMailboxEntry
WHERE DefaultVaultId <> '' AND ADMbxDN IS NULL
4) Run the provisioning task
5) Try to reproduce the behavior by exporting the applicable archive again.
10-16-2013 03:10 AM
Cause :
DefaultVaultId value is empty or NULL and ADMbxDN value is NULL on the ExchangeMailboxEntry table of the EnterpriseVaultDirectory database
By removing these mailboxes, the archive should work and complete normally.
Solution :
1) Backup the ExchangeMailboxEntry table
2)Run the following query on the SQL to verify the affected users
USE EnterpriseVaultDirectory
SELECT * FROM ExchangeMailboxEntry
WHERE DefaultVaultId <> '' AND ADMbxDN IS NULL
3) Delete the affected users with the following query
USE EnterpriseVaultDirectory
DELETE FROM ExchangeMailboxEntry
WHERE DefaultVaultId <> '' AND ADMbxDN IS NULL
4) Run the provisioning task
5) Try to reproduce the behavior by exporting the applicable archive again.
10-16-2013 06:02 AM
Thanks Ajay,
I did use the following atr the end
as there were two entries for some users for some reason.
10-16-2013 06:17 AM
Hi,
It means one has has 2 entries and you delete both the entries from ExchangeMailboxEntry Table.
After that make sure you Run the Provisioning Task in Normal mode and then test your export and let me know if you face any issue.
10-16-2013 07:31 AM
Yes export worked fine. Many Thanks for your help.
10-17-2013 12:38 AM
Hi,
Thanks for your reply. That's great new that your issue is resolve.
Do you need more assistance regarding this topic? If not then please mark the post that best solves your problem as the answer to this thread.
10-17-2013 12:43 AM
Thanks for marking as solution.