4

When I run the SSRS report in Visual Studio I'm able to run the report but when I execute the report through the report server it's throwing the below error any help.

Error :
An error occurred during client rendering.
Unsupported RPL stream version detected: 101.116.1047292257. Expected version: 10.6.
Kapil
  • 1,823
  • 6
  • 25
  • 47
  • 2
    Hey Kapil, Did you find the root cause of this issue or a way to fix this? This just started happening with one of my servers. – Atul May 28 '18 at 15:20

3 Answers3

0

When I had this it was due to a filter on a parameter missing a 0 between the brackets

I had NOT(Parameters!Milestones.Value

but it had to be NOT(Parameters!Milestones.Value(0)

0

In my case the ReportServer database was corrupt, running this script solved the problem

USE master; ALTER DATABASE [ReportServer] SET SINGLE_USER WITH ROLLBACK IMMEDIATE; GO DBCC CHECKDB ('ReportServer', REPAIR_ALLOW_DATA_LOSS) WITH NO_INFOMSGS; GO ALTER DATABASE ReportServer SET MULTI_USER; GO

USE master; ALTER DATABASE [ReportServerTempDB] SET SINGLE_USER WITH ROLLBACK IMMEDIATE; GO DBCC CHECKDB ('ReportServerTempDB', REPAIR_ALLOW_DATA_LOSS) WITH NO_INFOMSGS; GO ALTER DATABASE ReportServerTempDB SET MULTI_USER; GO

RonaldPaguay
  • 337
  • 3
  • 12
0

For me, the reportserver database was set to full logging and filled up the log disk

Grant Haugen
  • 66
  • 1
  • 3