Sql 用户SSRS使用统计报告

Sql 用户SSRS使用统计报告,sql,sql-server,sharepoint,reporting-services,Sql,Sql Server,Sharepoint,Reporting Services,使用SQLServer2008,我有一个SSRS报告。用户可以在Sharepoint上查看此报告。 我需要获取此报告的用户使用情况统计(如访问次数) 我可以用哪种方法来做?希望对您有所帮助。此查询: SELECT c.Name, e.Timestart, e.TimeEnd, e.UserName, e.Status, c.Description, e.InstanceName, e.ReportI

使用SQLServer2008,我有一个SSRS报告。用户可以在Sharepoint上查看此报告。 我需要获取此报告的用户使用情况统计(如访问次数)

我可以用哪种方法来做?希望对您有所帮助。

此查询:

SELECT c.Name,
       e.Timestart,
       e.TimeEnd,
       e.UserName,
       e.Status,
       c.Description,
       e.InstanceName,
       e.ReportID,
       e.TimeDataRetrieval,
       e.TimeProcessing,
       e.TimeRendering,
       e.Source
  FROM <yourSQLdatabase.dbo.ExecutionLog e
INNER JOIN <yourSQLdatabase>.dbo.Catalog c
    ON e.ReportID = c.ItemID
 where timestart >=  @startdate
   and timestart <=  @enddate;
选择c.名称,
e、 时间起点,
e、 时间结束,
e、 用户名,
e、 地位,
c、 描述,
e、 InstanceName,
e、 ReportID,
e、 时间数据检索,
e、 时间处理,
e、 时间渲染,
e、 来源
FROM=@startdate
和timestart此查询:

SELECT c.Name,
       e.Timestart,
       e.TimeEnd,
       e.UserName,
       e.Status,
       c.Description,
       e.InstanceName,
       e.ReportID,
       e.TimeDataRetrieval,
       e.TimeProcessing,
       e.TimeRendering,
       e.Source
  FROM <yourSQLdatabase.dbo.ExecutionLog e
INNER JOIN <yourSQLdatabase>.dbo.Catalog c
    ON e.ReportID = c.ItemID
 where timestart >=  @startdate
   and timestart <=  @enddate;
选择c.名称,
e、 时间起点,
e、 时间结束,
e、 用户名,
e、 地位,
c、 描述,
e、 InstanceName,
e、 ReportID,
e、 时间数据检索,
e、 时间处理,
e、 时间渲染,
e、 来源
FROM=@startdate

timestart这是以前问过的,以前找不到,thx是帮助,这是以前问过的,以前找不到,thx是帮助;没有注意到上面有一个指向先前解决方案的链接;这个链接提供了我在上面发布的内容之外的其他有用信息;没有注意到上面有一个指向先前解决方案的链接;这个链接提供了我在上面发布的内容之外的其他有用信息。