Forum Discussion

iraafo's avatar
iraafo
Level 3
12 years ago

I can fing the archive name and export to pst, but if I try to export the same Archive to original mailbox I cant find the user

,Hi Our environment contains vault version 9.0.2.1016 server with windows 2008 R2 OS, 4 exchange server 2003 and OS 2003, and 1 server with exchange 2010 and OS 2008 R2 , the provisioning task is...
  • JesusWept3's avatar
    12 years ago

    I'm not saying the provisioning task is failing, i'm saying that the user just isn't provisioned at all.

    Could you run these queries for us and let us know what the results are??

     

    USE EnterpriseVaultDirectory
    SELECT A.ArchiveName "Archive", 
           A.ArchiveStatus "Archive Status",
           EME.MbxArchivingState "Mailbox Archive State",
           EME.MbxExchangeState "Mailbox Exchange State",
           EME.LastModified "Last Provision Date",
           EME.PolicyTargetGroupEntryId "Provisioning Group ID"
    FROM   Archive A, Root R, ExchangeMailboxEntry EME
    WHERE  A.RootIdentity = R.RootIdentity
      AND  R.VaultEntryId = EME.DefaultVaultId
      AND  A.ArchiveName = 'Your User'

     

    USE EnterpriseVaultDirectory
    SELECT EME.MbxDisplayName "Mailbox Name",
           ESE.ExchangeComputer "Exchange Server",
           EMS.Name "Exchange Database Name",
           PTG.DisplayName "Provisioning Group",
           EME.LastModified "Last Provision Date"
    FROM   ExchangeMailboxEntry EME,
           ExchangeMailboxStore EMS,
           ExchangeServerEntry ESE,
           PolicyTargetGroup PTG
    WHERE  EME.PolicyTargetGroupEntryId = PTG.PolicyTargetGroupEntryId
      AND  EME.MbxStoreIdentity = EMS.MbxStoreIdentity
      AND  EMS.ExchangeServerIdentity = ESE.ExchangeServerIdentity
      AND  EME.MbxDisplayName = 'Your User'