Hi all,
I'm wondering if anyone has a LR that will output the number of Fetches/Downloads performed by unique users in a give timeframe. So the output would be similar to:
| DOC NAME | Hits in October | Hits in November | Hits in December |
| Doc1 | 24 | 18 | 2 |
| Doc2 | 12 | 16 | 44 |
| Doc3 | 16 | 11 | 54 |
All three documents above have the same parent folder.
I have the SQL to pull the documents: select dataid from dtree start with dataid=STARTWITH connect by prior dataid = parentid
And I have one that will provide hits on a per user basis: select name, count(*) "number of hits" from dauditnew,kuaf where id=performerid and (auditstr='Fetch') and dataid in (select dataid
from dtree start with dataid in (39620992) connect by prior dataid=parentid) group by name order by count(*)desc
But I'm looking for something that will break it down by document.
Thanks!
Matt