Reputation: 117
I'd like to know if I can query (via the Query Builder) the reports run by all users in a predetermined time interval.
With
SELECT SI_NAME, SI_UPDATE_TS, SI_CREATION_TIME
FROM CI_INFOOBJECTS
WHERE SI_KIND IN 'Webi, FullClient'
AND SI_UPDATE_TS > '2013.07.01'
we get all the reports updated from 2013.07.01, where SI_CREATION_TIME
is the report creation time; instead I need to extract the reports run by all the users in the last year for example
Is this possible?
Upvotes: 0
Views: 883
Reputation: 8557
When you run a query through the Query Builder, you're retrieving data from the CMS repository, which contains no historical data.
If you want to know which documents were run by which users in a given timeframe, you need to use the audit database.
Whether you can retrieve the information from said audit database depends on a number of things:
Upvotes: 1