Saturday, 21 April 2012

Resolve SSRS unsupported RPL stream version ... error

This is one of those weird errors you encounter while working with Microsoft technologies. I was using Report Builder 3.0 to design and publish a report to SharePoint 2010, but when i tried to preview my report in RB i got this annoying error unsupported RPL stream version detected: 101.116.1047292257. Expected version 10.6. 


After doing a couple of search to fix this problem, it happened that the SQL Server Agent had to be started.

I hope this helps someone.

1 comment:

  1. Run this

    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

    ReplyDelete