简体   繁体   English

SSRS报告有时未创建

[英]SSRS report not creating sometime

I have a SSRS report and it is generating from 4 dataset. 我有一个SSRS报告,它是从4个数据集生成的。

This report sending to client by email from console application in every 1 hour. 此报告每1小时通过控制台应用程序通过电子邮件发送给客户端。

Issue : Report working completely as expected but sometime its throw error as below. 问题 :报告完全按预期工作,但有时会发生以下抛出错误。 Please let me know if anybody have solution. 请让我知道是否有人可以解决。

at Microsoft.Reporting.WebForms.ServerReportSoapProxy.OnSoapException(SoapException e) 在Microsoft.Reporting.WebForms.ServerReportSoapProxy.OnSoapException(SoapException e)

at Microsoft.Reporting.WebForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.ProxyMethodInvocation.Execute[TReturn](RSExecutionConnection connection, ProxyMethod 1 initialMethod, ProxyMethod 1 retryMethod) 在Microsoft.Reporting.WebForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.ProxyMethodInvocation.Execute [TReturn](RSExecutionConnection连接,ProxyMethod 1 initialMethod, ProxyMethod 1重试方法)

at Microsoft.Reporting.WebForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.Render(String Format, String DeviceInfo, PageCountMode PaginationMode, String& Extension, String& MimeType, String& Encoding, Warning[]& Warnings, String[]& StreamIds) 在Microsoft.Reporting.WebForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.Render(字符串格式,字符串DeviceInfo,PageCountMode PaginationMode,字符串和扩展名,字符串和MimeType,字符串和编码,警告[]和警告,字符串[]和StreamIds)处

at Microsoft.Reporting.WebForms.ServerReport.Render(String format, String deviceInfo, PageCountMode pageCountMode, String& mimeType, String& encoding, String& fileNameExtension, String[]& streams, Warning[]& warnings) 在Microsoft.Reporting.WebForms.ServerReport.Render(String格式,String deviceInfo,PageCountMode pageCountMode,String&mimeType,String&编码,String&fileNameExtension,String []&流,Warning []&warnings)

at Microsoft.Reporting.WebForms.Report.Render(String format, String deviceInfo, String& mimeType, String& encoding, String& fileNameExtension, String[]& streams, Warning[]& warnings) 在Microsoft.Reporting.WebForms.Report.Render(字符串格式,字符串deviceInfo,字符串和mimeType,字符串和编码,字符串和fileNameExtension,字符串[]&流,警告[]&警告)

at ABC.Program.GenerateExcelAndMail() in d:\\XYX\\XYZ\\Program.cs:line 4875An error has occurred during report processing. 在d:\\ XYX \\ XYZ \\ Program.cs:line 4875中的ABC.Program.GenerateExcelAndMail()中,报表处理期间发生错误。 (rsProcessingAborted)The execution failed for the shared data set 'dsXYZDataset'. (rsProcessingAborted)对共享数据集'dsXYZDataset'执行失败。 (rsDataSetExecutionError) (rsDataSetExecutionError)

Here is the root of your problem: 这是问题的根源:

The execution failed for the shared data set 'dsXYZDataset' 共享数据集“ dsXYZDataset”的执行失败

Because the dataset failed your report could not finish running. 由于数据集失败,您的报告无法完成运行。 Basically you need to dig into the 'dsXYZDataset' to determine why it only runs intermittently. 基本上,您需要深入研究'dsXYZDataset'以确定为什么它只能间歇运行。 Solve that and your report should run consistently. 解决该问题,您的报告应始终运行。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM