지금 지원 담당자와 채팅
지원 담당자와 채팅

Archive Shuttle 11.5 - Sizing Tool Guide

Introduction

This guide lists SQL sizing queries for Metalogix, EAS, SourceOne, EMX, Enterprise Vault Discovery Accelerator, QAM and Enterprise Vault in Archive Shuttle.

Licensing

The following are the sizing queries size column description for each source in the DB. Each column will note if the output is the compressed or uncompressed size.

License calculations are based from the compressed sizes in the AS DB (table Item, column CompressedSize).

Metalogix

·EXCHANGEPAMDOCUMENTS.ARCHIVE_SIZE used as compressed size.

·EXCHANGEPAMDOCUMENTS.UNCOMPRESSED_SIZE used as uncompressed size.

EAS

·Table PROFILE, column MSGSIZE - size from EAS DB used as compressed and uncompressed sizes in AS DB.

SourceOne/EMX

·Table MESSAGE, column MSGSIZE - size from S1/EMX DB used as compressed and uncompressed sizes in AS DB.

EVDA

·View view_DiscoveredItems, column SIZE - size from EVDA DB used as compressed and uncompressed sizes in AS DB.

QAM

·Table MESSAGE, column SIZE - size from QAM DB used as compressed and uncompressed sizes in AS DB.

EV

·View view_ListVaults, column ArchivedItemsSize returns compressed data.

Enterprise Vault

The following queries can be used for Enterprise Vault. All query output units are in MB.

info

NOTE: Query outputs utilize compressed values to determine licensing.

Overall statistics

info

NOTE: This query should be run against the Enterprise Vault Vault Store Database.

 

-- compressed size - SaveSet.ItemSize - Default size is in KiloBytes

-- uncompressed size - SavesetProperty.OriginalSize - Default size is in Bytes

-- Run this query over EV Item database

 

-- overall statistics

SELECT COUNT(*) AS TotalNumberOfArchives, SUM(tmp.CountOfarchivedItems) AS TotalCountOfItems, SUM(tmp.TotalCompressedSizeMB) AS TotalCompressedSizeMB,

 SUM(tmp.TotalUncompressedSizeMB) AS TotalUncompressedSizeMB

FROM (

         SELECT av.ArchiveName, av.ArchiveTypeName, ve.VaultStoreName, COUNT(s.SavesetIdentity) AS CountOfarchivedItems, SUM(CONVERT(BIGINT, s.ItemSize)) / 1024 AS TotalCompressedSizeMB,

                         SUM(CONVERT(BIGINT, sp.OriginalSize)) / 1024 / 1024 AS TotalUncompressedSizeMB

         FROM dbo.ArchivePoint ap WITH(NOLOCK)

         INNER JOIN EnterpriseVaultDirectory.dbo.ArchiveView av ON ap.ArchivePointId = av.VaultEntryId

         INNER JOIN EnterpriseVaultDirectory.dbo.VaultStoreEntry ve ON av.VaultStoreEntryId = ve.VaultStoreEntryId

         LEFT JOIN dbo.Saveset s ON s.ArchivePointIdentity = ap.ArchivePointIdentity

         LEFT JOIN dbo.SavesetProperty sp ON s.SavesetIdentity = sp.SavesetIdentity

         -- Enable row in case you want stats per single vault store

         -- WHERE ve.VaultStoreName LIKE '%EV14VSG01VS01%'

                 GROUP BY av.ArchiveName, av.ArchiveTypeName, ve.VaultStoreName

 ) AS tmp

 

Result:

EV1

셀프 서비스 도구
지식 기반
공지 및 알림
제품 지원
소프트웨어 다운로드
기술 설명서
사용자 포럼
비디오 자습서
RSS 피드
문의처
라이센싱 지원가져오기
기술 지원
모두 보기
관련 문서

The document was helpful.

평가 결과 선택

I easily found the information I needed.

평가 결과 선택