For Discovery Accelerator (DA) 9.0, beginning with Service Pack (SP) 4 Cumulative Hotfix (CHF) 2, and DA 10.0 SP2, beginning with CHF2:
- Event ID 562
Discovery Accelerator has identified some cases in which it could not apply legal hold to certain items.It will make repeated attempts to apply legal hold to these items. If you continue to receive this errormessage for the next few days, contact Symantec Technical Support.The following cases contain items to which Discovery Accelerator could not apply legal hold:
list_of_cases
Various reasons exist that can prevent items from being placed on legal hold. Such reasons can include, but not be limited to, the following:
When the placement of a legal hold fails, the LegalStatus column in the DA Customer database's tblIntDiscoveredItems table is filled with a value of 425 and the LegalError column is filled with the KVSSavesetID of the failed item and a failure status code. This error code can be translated into the failure cause description through reference to technical article TECH61297 (see the Related Articles section below).
The following versions of DA are the first versions that will automatically retry failed hold items until they have been successfully placed on Legal Hold:
9.0 Service Pack (SP) 4, Cumulative Hotfix 2 (CHF2) [9.0.4CHF2]
10.0 Service Pack (SP) 2, Cumulative Hotfix 2 (CHF2) [10.0.2CHF2]
10.0 Service Pack (SP) 3, Cumulative Hotfix 1 (CHF1) [10.0.3CHF1]
All older DA versions will not automatically retry those failed items to place holds on them. Instead, those versions rely upon a DA reviewer to notice the 'Failed Items' count in the list of Cases in the DA Client to know there were items that failed to be placed on hold, then to notify the DA administrator to investigate why the holds placement failed, resolve the cause or causes, then manually retry to place the olds using the steps in the Solution section below or by removing the Case from holds, letting all holds be removed, then placing the Case on hold again.
SELECT DISTINCT LegalError FROM tblIntDiscovereditems DECLARE @CaseID int SET @CaseID = XX
UPDATE tblCase SET LegalHoldStatus = 410, LegalHoldError = NULL
WHERE CaseID = @CaseID AND LegalHoldState = 400
UPDATE tblintDiscoveredItems SET LegalStatus = 420, LegalError = NULL, LegalHoldID = NULL
WHERE CaseID = @CaseID AND LegalStatus NOT IN (420, 426)GO -- run after the above scripts complete EXEC usp_LegalItem_UpdateSummary @CaseId = XX UPDATE tblCase SET LegalHoldStatus = 410,
LegalHoldError = NULL
WHERE LegalHoldState = 400
UPDATE tblintDiscoveredItems SET LegalStatus = 420,
LegalError = NULL, LegalHoldID = NULL
WHERE LegalStatus <> 426GOEXEC usp_DiscoveryDiscoveredItemSummary_Recalculate