Method 2a: - All users
1. Run the query below:
Note: Replace VaultStoreDatabase with the name of the database for the vault store
USE VaultStoreDatabase
SELECT AV.ArchiveName, vAP.ArchivedItems
FROM view_ArchivePoint vAP INNER JOIN
EnterpriseVaultDirectory.dbo.ArchiveView AV ON AV.VaultEntryId = vAP.ArchivePointId
ORDER BY ArchivedItems ASC
This will return all mailbox archives with the number of archived items.
Method 2b - Specific User:
To locate a specific user:
Note: Replace VaultStoreDatabase with the name of the database for the vault store and replace ' ArchiveIDFromConsole' with the Archive ID copied previously.
USE VaultStoreDatabase
SELECT AV.ArchiveName, vAP.ArchivedItems
FROM view_ArchivePoint vAP INNER JOIN
EnterpriseVaultDirectory.dbo.ArchiveView AV ON AV.VaultEntryId = vAP.ArchivePointId
WHERE vAP.ArchivePointId = 'ArchiveIDFromConsole'