The following will be seen in a DTrace log of the EVTaskGuardian process:
(EVTaskGuardian)
There is an orphaned task entry in the EnterpriseVaultDirectory database.
1. Stop all EV Services.
2. Backup the EnterpriseVaultDirectory database.
3. Edit the following query for the TaskEntryID in the last line and execute the following query against the EnterpriseVaultDirectory database in SQL Management Studio to get the TaskIdentity value:
Use EnterpriseVaultDirectory
Select TaskIdentity from Task
where TaskEntryId = "
4. Verify if a record with the TaskIdentity value is listed in the TeamsArchivingTask table.
Delete the record with the matching TaskIdentity value from the TeamsArchivingTask table if it exists by editing the last line in the following query for the TaskIdentity and executing against the EnterpriseVaultDirectory database:
Use EnterpriseVaultDirectory
Delete from TeamsArchivingTask
where TaskIdentity = "
5. Then delete the orphaned record from the Task table by editing the last line in the following query for the TaskIdentity and executing against the EnterpriseVaultDirectory database:
Use EnterpriseVaultDirectory
Delete from Task
where TaskIdentity = ">TaskIdentity from Step 3>"
6. Refresh the TeamsArchivingTask and Task tables to verify the deletion of the orphaned record was successful.
7. Start all EV services.