sql server - How do you check if an SSRS report was executed by a user or an automatic refresh in the SSRS SQL database? -


how check if ssrs report executed user or automatic refresh in ssrs sql database?

i'm assuming answer in executionlog table or links to, can't seem find answer anywhere.

a query start with:

    select  path path ,             name name ,             createdby.username createdby ,             count(distinct executionlog.username) distinctusercount ,             count(executionlog.username) executioncount        catalog             left join users createdby on createdby.userid = catalog.createdbyid             left join executionlog on catalog.itemid = executionlog.reportid     group path ,             name ,             createdby.username     order path ,             name ,             createdby.username 

any appreciated.


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -