DA. Analytics. Can we enumerate Duplicates BEFORE Export?
Hi all.
We have a very large case in Discovery Acclerator, analytics for the case was enabled and has completed.
We also have SQL reporting services installed, and the DA report templates have been uploaded.
I can see that we can use the option to exclude duplicates from an export. Adn then also we can run a report that would show the duplicates AFTER the export.
I hope there is a way to find out how many duplicates there are BEFORE we run an export (the export will be huge and will take many days, so it would be nice to know this information sooner, because many people are asking this question - "how many items are going to be exported?")
Is it possible to enumerate duplicates via a SQL query? Or can it be done via a custom report?
Thanks for any advice.
Do you plan to export all items in the case? And are you going to choose Similiar and Duplicate or Duplicate only?
If doing Duplicate only this should give you a good idea:
Runs against your DA Customer database:
SELECT CaseName, COUNT(Distinct KVSSaveSetID)
FROM view_DiscoveredItems
GROUP BY CaseName