Enterprise Vault (EV) Compliance Accelerator (CA) and Discovery Accelerator (DA) provide information about each index volume searched in each search's Archives section under the search listing in the CA / DA Client. In order to review this information outside of CA or DA, this information must be copied to a file such as a Microsoft Excel spreadsheet.
SELECT tc.Name AS 'Case Name' , tsv.SearchID AS 'Search ID' , tis.Name AS 'Search Name' , tv.KVSVaultName AS 'Archive' , tv.VaultID AS 'Volume' , tvs.Name AS 'Vault Store' , ts.Name AS 'Status' , tsv.StartDate AS 'Started' , tsv.EndDate AS 'Ended' , tsv.NumHits AS 'Hits' , tsv.Info AS 'Info' FROM tblSearchVault AS tsv INNER JOIN tblStatus AS ts ON tsv.StatusID = ts.StatusID INNER JOIN tblVaults AS tv ON tsv.VaultID = tv.VaultID INNER JOIN tblVaultStore AS tvs ON tv.VaultStoreID = tvs.VaultStoreID INNER JOIN tblIntSearches AS tis ON tsv.SearchID = tis.SearchID INNER JOIN tblCase AS tc ON tis.CaseID = tc.CaseID WHERE tsv.Info IS NOT NULL AND tsv.SearchID = XXX -- replace XXX with the SearchID of the search change the initial table from tblSearchVault to tblSearchVaultsArchived as follows: SELECT tc.Name AS 'Case Name' , tsva.SearchID AS 'Search ID' , tis.Name AS 'Search Name' , tv.KVSVaultName AS 'Archive' , tv.VaultID AS 'Volume' , tvs.Name AS 'Vault Store' , ts.Name AS 'Status' , tsva.StartDate AS 'Started' , tsva.EndDate AS 'Ended' , tsva.NumHits AS 'Hits' , tsva.Info AS 'Info' FROM tblSearchVaultsArchived AS tsva INNER JOIN tblStatus AS t ON tsva.StatusID = ts.StatusID INNER JOIN tblVaults AS tv ON tsva.VaultID = tv.VaultID INNER JOIN tblVaultStore AS tvs ON tv.VaultStoreID = tvs.VaultStoreID INNER JOIN tblIntSearches AS tis ON tsva.SearchID = tis.SearchID INNER JOIN tblCase AS tc ON tis.CaseID = tc.CaseIDWHERE tsva.Info IS NOT NULL AND tsva.SearchID = XXX -- replace XXX with the SearchID of the search Date Range Exclusion - no items in the index volume are within the date span of the search. This will only display if the Optimize searches based on oldest and youngest items option has been enabled in the Searches configuration settings. Index and archive out of sync - the index volume is actively being updated by the EV Indexing Service at the time the search attempted to search the index volume, rerunning the search at a later time will likely allow access to the index volume so it can be searched. Some items could not be searched , or Items or content missing from the index - the index volume has at least 1 item that failed to be indexed. Run the 'nudge' process or the 'Repair Index Volume' option against the specific Index Volume. See Related Articles below for additional information. Search request failed. Reason: %1 Index ID: %2 Requestor: %3 Search Query: %4 Search Arguments: %5 [0xc0041c67] - indicates the index volume may have been marked as failed do to the CA / DA search. See Related Articles below for additional information. The search could not be performed due to the index not being searchable. Index state: Failed (or Rebuilding) - The index volume has been marked as failed and is no longer searchable until the issue is corrected, or the index volume is currently being rebuilt or updated. See Related Articles below for additional information.