Forum Discussion
New scheduled refresh stuck at refreshing
- 4 years ago
For some weird reason, all the events piled up in Reportserver database event table. The count was in million. I had to remove those events to allow new schedules to start.
- 3 years ago
You may check the event table item count in reportserver database . If you see too many records delete them . Simple database query I used
USE ReportServer
SELECT COUNT(*) FROM Event
DELETE FROM Event
Hope it helps.
For some weird reason, all the events piled up in Reportserver database event table. The count was in million. I had to remove those events to allow new schedules to start.
- Anonymous3 years agoNot applicable
Hi jpnayak ,
Can you explain the step to solve this issue? im facing the same issue and dont know what to do.
Thank you.
- Anonymous3 years agoNot applicable
jpnayak - Can you help what is the action that should be performed when u say remove the events. please provide the steps for this issue.
Thanks
- jpnayak3 years agoFrequent Visitor
You may check the event table item count in reportserver database . If you see too many records delete them . Simple database query I used
USE ReportServer
SELECT COUNT(*) FROM Event
DELETE FROM Event
Hope it helps.