Event Type: Warning
Event Source: Enterprise Vault
Event Category: Storage Delete
Event ID: 7113
Description:
Following archive could not be deleted as it contains items that are on hold, or their retention category does not allow deletions, or a compliance device retention period prevents them from being deleted.
Archive Name = ...
Archive Entry Id = ...
Total items on hold = ...
"Deleting an archive permanently removes the archive and all items stored in it. This action will override any form of deletion protection applied to items or Retention Category. Once you click 'Yes' you cannot cancel the deletion." 'No' . If 'Yes' is clicked, the Archive will be deleted even if on Legal Hold (see Note below). "Once you click 'Yes' you cannot cancel the deletion." Note:
If there are any items listed in the 'Total items on hold' line, there are items on Legal Hold within this Archive from Cases within Discovery Accelerator (DA). Also, if searches have been performed on this archive, the Accelerator product will mark the archive as an interest. Please go through the following steps to determine which DA Cases have items on Legal Hold or an Interest for this Archive:
1. Copy the Archive Entry ID from the Event ID 7113 entry. It will have a format similar to this: 1C757ED88FC5C5D4EA36D8F6518774F3B1110000EVSITE01.
2. Replace AA with the Archive Entry ID and run the following SQL Query against the DA Customer Database(s). Be sure to retain the single quotes around the Archive Entry ID:
DECLARE @vid varchar(112) SET @vid = 'AA'
SELECT DISTINCT tc.[Name] FROM tblCase tc
JOIN tblIntDiscoveredItems tidi ON tidi.CaseID = tc.CaseID
JOIN tblVaults tv ON tv.VaultID = tidi.VaultID
WHERE tv.KVSVaultEntryID = @vid
UNION
SELECT DISTINCT tc.[Name] FROM tblCase tc
JOIN tblSearchItems tsi ON tsi.CaseID = tc.CaseID
JOIN tblVaults tv ON tv.VaultID = tsi.VaultID
WHERE tv.KVSVaultEntryID = @vid
3. Any Cases listed in the Query results will have to be reviewed by the appropriate personnel in order to maintain conformity with any and all compliance rules and regulations that an organization may be subject to prior to deleting the Archive.