James_Slack
16 years agoLevel 6
This mailbox has duplicate entries.... Error 3333 events
Hi,
We are nearing the end of our migrations from one AD to another. We have SynchInMigrationMode set to 1 (on). (not SyncInMigrationMode without the H as I first typed)
For 99% of mailboxes this has worked fine.
Some users have just the one Exchange Vault item, some have 2 but no complaints... but some (say 200 people) have the following error appearing in the EV log:
---------------------------
Event Number 3333
Severity Error
Application or service EV
Typical message
This mailbox has duplicate entries in the directory and cannot be processed. LegacyDN: %1 DefaultVaultID: %2
---------------------------
There is no info on this in the Rossetta so wondering if anyone has any ideas what I can look at and try?
Many thanks for your time
James
We are nearing the end of our migrations from one AD to another. We have SynchInMigrationMode set to 1 (on). (not SyncInMigrationMode without the H as I first typed)
For 99% of mailboxes this has worked fine.
Some users have just the one Exchange Vault item, some have 2 but no complaints... but some (say 200 people) have the following error appearing in the EV log:
---------------------------
Event Number 3333
Severity Error
Application or service EV
Typical message
This mailbox has duplicate entries in the directory and cannot be processed. LegacyDN: %1 DefaultVaultID: %2
---------------------------
There is no info on this in the Rossetta so wondering if anyone has any ideas what I can look at and try?
Many thanks for your time
James
- OK Basically, we need to delete any Vault SQL entries that have a MbxArchivingState of 1 for a user that is having the issues and then the enable works.
Only do this for the users that you can't enable post migration.
This is the SQL used:
To find details of the user you are having issues enabling:
select *
from Exchangemailboxentry
where firstname = 'james' AND lastname = 'slack'
(Change the names!)
To delete the ones that have a state of 1 for those affected users:
delete from dbo.ExchangeMailboxEntry
Where MbxIdentity = '12345'
(Change the numbers!)
Here is some background info
Event 3333 - http://seer.entsupport.symantec.com/docs/296190.htm
SynchInMigrationMode - http://seer.entsupport.symantec.com/docs/294339.htm
Hope this helps.