views:

654

answers:

3

I have a SQL Server Reporting Services 2005 installation that has worked great for a few years now, but has been giving me occasional glitches recently.

I'm using the default reporting services website instead of embedding reports into my application, which has proven a very efficient way to deploy the reports. The OS is Windows Server 2003 and the reports are being viewed on IE8 running XP.

It's not a big deal. Refreshing the browser brings the report right up each time. I guess it might be a cacheing issue. It does scare users, so it would be nice to squash this bug.

Any ideas?

Server Error in '/Reports' Application.

Execution 'j0cnbcqzv5lxg1imzqouqxya' cannot be found (rsExecutionNotFound) Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: Microsoft.Reporting.WebForms.ReportServerException: Execution 'j0cnbcqzv5lxg1imzqouqxya' cannot be found (rsExecutionNotFound)

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:

[ReportServerException: Execution 'j0cnbcqzv5lxg1imzqouqxya' cannot be found (rsExecutionNotFound)] Microsoft.Reporting.WebForms.ServerReport.GetExecutionInfo() +289 Microsoft.Reporting.WebForms.ServerReport.SetExecutionId(String executionId, Boolean fullReportLoad) +120 Microsoft.Reporting.WebForms.ServerReport.LoadFromUrlQuery(NameValueCollection requestParameters, Boolean fullReportLoad) +101 Microsoft.Reporting.WebForms.ReportDataOperation..ctor() +321 Microsoft.Reporting.WebForms.HttpHandler.GetHandler(String operationType) +458 Microsoft.Reporting.WebForms.HttpHandler.ProcessRequest(HttpContext context) +56 System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +181 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +75


Version Information: Microsoft .NET Framework Version:2.0.50727.3603; ASP.NET Version:2.0.50727.3082

A: 

Here is a thread that might help...not sure if you tried it already.

In this case updating Microsoft.ReportViewer.WebForms.dll was a fix.

I also saw where it could be caused by a problem with NT Authority\Network Service account.

A quick "Google" with SSRS 2005 Execution "cannot be found" produced quite a few other options as well.

HTH

Mozy
A: 

Take a look here :

http://blogs.msdn.com/jgalla/archive/2006/10/11/session-timeout-during-execution.aspx

This can happen when a report takes a long time to run, using a script with rs.exe to increase the RS session lifetime may well help.

A: 

I have answered this question in this thread.

It is to do with the execution context in the Session expiring.

Dominic Zukiewicz