Monday, February 27, 2017

My Favorite SSRS Interview Questions

Report Subscriptions

Data-Driven Subscriptions

Linked Report

Report Parameters / Cascading parameters

Processing options: most recent data, cache, or snapshot

Cache refresh options

Report history

Snapshot options

What built-in logging does SSRS provide?

How can you run a subscription on demand? use ReportServer.dbo.AddEvent stored proc







Tuesday, February 21, 2017

Get the last execution run time of every report

/*

SCRIPT: GET_LAST_REPORT_EXECUTION_TIME

get the last execution run time of every report

*/

SELECT
  ItemPath
, MAX(TimeStart) RunTime
FROM [dbo].[ExecutionLog3]
GROUP BY ItemPath, TimeStart
ORDER BY 2 DESC

Thursday, February 9, 2017

Thursday, February 2, 2017