Hi,
You can run this query via SQL query analyser and it'd show you how many items have been archived against each archive in the last year.
select ArchiveName,count(*) as 'ItemsArchived' from
enterprisevaultdirectory.dbo.root,enterprisevaultdirectory.dbo.archive
,archivepoint ,saveset where archiveddate >getdate()-365 and
saveset.archivepointidentity = archivepoint.archivepointidentity and
enterprisevaultdirectory.dbo.root.vaultentryid = archivepoint.archivepointid
and
enterprisevaultdirectory.dbo.root.rootidentity=enterprisevaultdirectory.dbo.archive.rootidentity
group by archivename
order by archivename desc
If you just want something like how many items have been archived in the last year the query will be
select count(*) from saveset where archiveddate>getdate()-365