Reporting Services 2016:无法编辑或上传 RDL(引发异常和内存转储)

Reporting Services 2016:无法编辑或上传 RDL(引发异常和内存转储)

我有一个 SQL Reporting Services 2016 (13.0.5103.6) Standard 本机实例,它不允许我使用 Report Builder 15.0.19611.0 编辑报告 (RDL) 或通过报告门户上传它们,它会引发异常并创建内存转储。我仍然可以在此实例中执行/生成报告。

在报表生成器中打开报表时,出现以下客户端错误:

An unexpected error occurred in Report Processing. --->
Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: An unexpected error occurred in Report Processing. --->
System.Exception: For more information about this error navigate to the report server on the local server machine, or enable remote errors

在服务器Reporting Services日志中,相应的错误日志条目是:

processing!ReportServer_0-1!1ac8!12/23/2021-14:11:29:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: , Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: An unexpected error occurred in Report Processing. ---> System.ComponentModel.Win32Exception: The system cannot find the path specified
   at Microsoft.Win32.NativeMethods.CreateDirectory(String path, SafeLocalMemHandle acl)
   at System.CodeDom.Compiler.TempFileCollection.CreateTempDirectoryWithAce(String directory, String identity)
   at System.CodeDom.Compiler.TempFileCollection.GetTempFileName(String tempDir)
   at System.CodeDom.Compiler.TempFileCollection.EnsureTempNameCreated()
   at System.CodeDom.Compiler.TempFileCollection.AddExtension(String fileExtension, Boolean keepFile)
   at System.CodeDom.Compiler.CodeCompiler.FromDomBatch(CompilerParameters options, CodeCompileUnit[] ea)
   at System.CodeDom.Compiler.CodeCompiler.System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromDomBatch(CompilerParameters options, CodeCompileUnit[] ea)
   at Microsoft.ReportingServices.RdlExpressions.VBExpressionCodeProvider.CompileAssemblyFromDomWithRetry(CompilerParameters options, CodeCompileUnit compilationUnit)
   at Microsoft.ReportingServices.RdlExpressions.ExprHostCompiler.InternalCompile(AppDomain compilationTempAppDomain, Boolean refusePermissions)
   at Microsoft.ReportingServices.RdlExpressions.ExprHostCompiler.<>c__DisplayClass2.<Compile>b__0()
   at Microsoft.ReportingServices.Diagnostics.RevertImpersonationContext.<>c__DisplayClass1.<Run>b__0(Object state)
   at System.Security.SecurityContext.runTryCode(Object userData)
   at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
   at System.Security.SecurityContext.Run(SecurityContext securityContext, ContextCallback callback, Object state)
   at Microsoft.ReportingServices.Diagnostics.RevertImpersonationContext.Run(ContextBody callback)
   at Microsoft.ReportingServices.RdlExpressions.ExprHostCompiler.Compile(IExpressionHostAssemblyHolder expressionHostAssemblyHolder, AppDomain compilationTempAppDomain, Boolean refusePermissions, PublishingVersioning versioning)
   at Microsoft.ReportingServices.ReportPublishing.ReportPublishing.Phase3(ParameterInfoCollection& parameters, Dictionary`2& groupingExprCountAtScope)
   at Microsoft.ReportingServices.ReportPublishing.ReportPublishing.InternalCreateIntermediateFormat(Stream definitionStream, String& description, String& language, ParameterInfoCollection& parameters, DataSourceInfoCollection& dataSources, DataSetInfoCollection& sharedDataSetReferences, UserLocationFlags& userReferenceLocation, ArrayList& dataSetsName, Boolean& hasExternalImages, Boolean& hasHyperlinks, Byte[]& dataSetsHash)
   at Microsoft.ReportingServices.ReportProcessing.ReportProcessing.CompileOdpReport(PublishingContext reportPublishingContext, PublishingErrorContext errorContext, String& reportDescription, String& report
library!ReportServer_0-1!1ac8!12/23/2021-14:11:29:: i INFO: Skipped creating a dump file for the error ReportProcessingException, because a dump with the identical stack trace (with signature 2668486527) was already created.

假设 'svcssrs' 是 SSRS 实例正在运行的 ADUser,使用 Procmon (Sysinternals) 针对 ReportingServicesService.exe,我注意到 CreateFile 操作失败,路径未找到,例如C:\Users\svcssrs\AppData\Local\Temp\abcdefgh

C:\Users\svcssrs\AppData\Local\Temp\存在并受“svcssrs”用户的完全控制。

我正在使用的 RDL 是一个非常标准的 RDL 文件,其中包含 Tablix、一些使用共享数据源的 MSSQL 数据集、一些基本的 SSRS 表达式、嵌入的图像(未链接)并且没有嵌入的 VB 代码或链接的程序集。

我从备份中恢复了 SNK 加密密钥,并且随后对其进行了更改,但行为没有变化。

我该如何解决这个问题?

答案1

问题是由于用户配置文件文件夹C:\Users\svcssrs直接从文件系统中删除,而没有先通过 sysdm.cpl 删除用户配置文件。当重新创建目录结构时,怀疑与配置文件相关的其他项目(例如:注册表配置单元?)未正确创建。

该问题已通过以下方式解决:

  1. 停止 SSRS 服务
  2. 通过 sysdm.cpl 删除“损坏的”“svcssrs”用户配置文件
  3. 启动 SSRS 服务并让其重新创建用户配置文件
  4. 将备份加密密钥 (SNK) 上传回 SSRS 实例。

答案2

我刚刚遇到了类似的问题,即我既无法使用 Visual Studio 部署报告,也无法通过报告管理器上传报告。唯一的区别是用户配置文件中的 Temp 文件夹丢失了。管理员已重新创建该文件夹,一切又恢复正常。

临时文件夹丢失的原因很可能是 SilentCleanup (cleanmgr.exe) 或 Storage Sense (storsvc.exe) 删除了该文件夹。更多详情请访问包含登录会话 ID 的 %TEMP% 文件夹被意外删除

相关内容