Forum Discussion

Slack's avatar
Slack
Level 4
7 years ago

Calculating space used - usage page - Single Instance etc.

Hi,

We have a requirement to export ALL of our EV 11 Exchange Mailbox data out to PSTs (don't ask, has to happen), so we need to know how big this will be.

I have the Vault Store Usage report. This shows (for example) 2TB of data.

The actual disk that holds the store is only 700GB, so what is being reported in the page is clearly bigger than what is actually used.

My question is, does the usage page calculate both compression and single instance storage?

If I export it all to PST today when the report says 2TB - will I end up with 2TB of PST data? Or, is anything (like single instance storage) not factored in to this, so we will end up with more data exported?

Thanks - James

 

 

8 Replies

  • Hello,

    It's not so easy to calculate the size after restoration, Veritas explain that the value in Usage Reporter is "The total size, after archiving, of all items stored in the archive" (https://www.veritas.com/support/en_US/article.TECH35741).

    Have you an SSRS instance with some other EV reports ?

    Just for information, if you must export many archive in PST file, you must know that in version 12.1 of EV you have powershell command for make it, that can help you to script these exports. For many clients I made the upgrade in version 12.1 only for use a script and automate the export.

    Regard,

    Antoine

    • Slack's avatar
      Slack
      Level 4

      Hi Titoine31

      I don't believe this environment has ever had SSRS, unless this is part of the standard install of SQL Server. Which I don't think it is.

      Upgrading is not an option, though that would certainly be a nice feature to have.

       

       

    • VirgilDobos's avatar
      VirgilDobos
      Moderator

      Hi mate,

      Try this SQL query. It will give you both compressed and uncompressed (original) size of the data.

      SELECT SUM(S.ItemSize)/1024 "Compressed Size (MB)",

      SUM(SP.OriginalSize)/1024/1024 "Uncompressed Size (MB)"

      FROM   VaultStoreDB.dbo.Saveset S

      VaultStoreDB.dbo.SavesetProperty SP

      WHERE  S.SavesetIdentity = SP.SavesetIdentity

       Just replace the VaultStoreDB with the Vault Store Database name.

      • Slack's avatar
        Slack
        Level 4

        Hi Virgil,

        Same info as above. Gives a total size compressed and uncompressed - does this cater for Single Instance Storage?

        Thanks - James

    • Slack's avatar
      Slack
      Level 4

      Hi Patrick

      I have run that script as per below, it brings back data from each mailbox and their compressed and unompressed size.

      The total of the uncompressed is not that different from the compressed size.

      How does this take in to account single instrance storage?

      If the below script gives me an uncompressed total - is that how much space I need to export everything? From previous posts, I fear not.

       

      SELECT A.ArchiveName "Archive Name",
             SUM(S.ItemSize)/1024 "Compressed Size (MB)",
             SUM(SP.OriginalSize)/1024/1024 "Uncompressed Size (MB)"
      FROM   EnterpriseVaultDirectory.dbo.Archive A,
             EnterpriseVaultDirectory.dbo.Root R,
             EVVSYourVaultStore_1.dbo.ArchivePoint AP,
             EVVSYourVaultStore_1.dbo.Saveset S,
             EVVSYourVaultStore_1.dbo.SavesetProperty SP
      WHERE  A.RootIdentity = R.RootIdentity
        AND  R.VaultEntryId = AP.ArchivePointId
        AND  AP.ArchivePointIdentity = S.ArchivePointIdentity
        AND  S.SavesetIdentity = SP.SavesetIdentity
      GROUP BY A.ArchiveName
      ORDER BY A.ArchiveName

       

  • Hi, try this one:

    you need to change Vaultstore DB accordingly.

    You can also order by any other criteria.

    This shows you what data consumes how much compressed uncompressed and shows SISPartcount.

    I normally export to csv to play arround with it.

     

    SELECT TOP *
    FROM [EnterpriseVaultDirectory].[dbo].[FileSpecification] INNER JOIN [VaultStoreDB].[dbo].[FileTypeSummary]
    ON (FileSpecification.FileTypeIdentity =FileTypeSummary.Type)
    ORDER BY LogicalCompressedSize desc