Forum Discussion

James_Slack's avatar
15 years ago

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 mailbox...
  • James_Slack's avatar
    15 years ago
    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.