Question

I inherited a SQL Server environment. In (database engine) SQL Server Agent are two jobs defined that apparently belong to the report server.

First and only step in the first job:

exec [ReportServer].dbo.AddEvent @EventType='CacheInvalidateSchedule', @EventData='c5b50dad-33bb-40b8-a696-59b1a555e8e4'

First and only step in the second job:

exec [ReportServer].dbo.AddEvent @EventType='RefreshCache', @EventData='f1ae0c17-b150-4861-8d9a-8552036123a3'

enter image description here

Any ideas how these two jobs were originally created and what they do? When I check the report server, there are no schedules defined:

enter image description here

The connected report server is empty:

enter image description here

Was it helpful?

Solution

First I ran

Use ReportServer  
select * from ExecutionLog3 order by TimeStart DESC  

This gave me a list of events that I matched with the scheduled times of the jobs:

enter image description here

So I went to the portal and checked the dataset. Turns out caching was enabled:

enter image description here

Licensed under: CC-BY-SA with attribution
Not affiliated with dba.stackexchange
scroll top