Pages

Thursday, March 8, 2012

Execution ' GUID ' not found during SSRS

Running a SQL Server Reporting Services Report and stumbled upon this error for every report.

Execution ' GUID ' not found

This is how I fixed it.

Created a Text file and named it sessionTimeout.rss

Public Sub Main() Dim props() as [Property] props = new [Property] () { new [Property](), new [Property]() } props(0).Name = "SessionTimeout" props(0).Value = timeout props(1).Name = "SessionAccessTimeout" props(1).Value = timeout rs.SetSystemProperties(props) End Sub

Save the file to the C:.

Then Run this command in command prompt:

rs -i sessionTimeout.rss -s http://localhost/reportserver -v timeout="6000"

(You might need to change the url if you did not keep it defaulted).

Your reports should now run.

No comments:

Post a Comment