In order to fix issues with index volumes that report errors in Compliance Accelerator (CA) or Discovery Accelerator (DA) searches, the proper information for the problem index volume(s) must be obtained. To identify the needed information for the affected index volume(s), a SQL query must be run against the EnterpriseVaultDirectory database using information from within the Search Details panel of the Searches pane in the CA or DA Client.
Note: Update Index Volume ID from DA Search Details where indicated.
DECLARE @FailedIndex AS NVARCHAR(100)
SET @FailedIndex = #IndexVolumeID --<<< replace #IndexVolumeID with the Index Volume ID from CA or DA Search Details noted in Step 1.h.
SELECT a.ArchiveName
, a.ArchiveDescription
, iv.IndexVolumeIdentity
,DATEADD(mi, DATEDIFF(mi, GETUTCDATE(), GETDATE()), iv.YoungestItemDateUTC) AS 'Youngest Archived Item'
, DATEADD(mi, DATEDIFF(mi, GETUTCDATE(), GETDATE()), iv.OldestItemDateUTC) AS 'Oldest Archived Item'
, iv.FirstItemSequenceNumber AS 'First Item Sequence Number'
, irpe.IndexRootPath
, iv.FolderName
FROM Archive AS a
JOIN IndexVolume AS iv
ON a.RootIdentity = iv.RootIdentity
JOIN IndexRootPathEntry AS irpe
ON iv.IndexRootPathEntryID = irpe.IndexRootPathEntryID
WHERE iv.IndexVolumeIdentity = @FailedIndex
The First Item Sequence Number is the starting value of the index volume when shown in the Vault Admin Console display of the archive's Properties in the Index Volumes tab, Details button. The First Item Sequence Number will be shown as the first number in the Range column for the matching index volume. Once the First Item Sequence Number for each affected index volume has been obtained, the appropriate action can be taken against the index volume(s) to resolve the search issue.