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

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

c# - Exception when attempting to modify Dictionary -