SSIS 数据分析任务编辑器返回错误代码

Sim*_*GIS 1 sql-server ssis

我正在尝试使用 Visual Studio 2017 运行 SSIS 工具“数据分析任务”

可以看到流程运行成功

在此输入图像描述

但是,当我单击“打开配置文件查看器”时,会出现此错误代码。

数据配置文件查看器遇到意外错误,必须关闭。错误消息为:无法加载文件或程序集“Microsoft.DataTransformationServices.ScaleHelper,Version=15.0.0.0,Culture=neutral,PublicKeyToken=89845dcd8080cc91”或其依赖项之一。找到的程序集的清单定义与程序集引用不匹配。(HRESULT 异常:0x80131040)

这个问题有解决办法吗?

haw*_*wre 8

我在 VS 2019 中遇到了这个问题。我在DataProfileViewer.exe.config中添加了以下几行

C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\CommonExtensions\Microsoft\SSIS\150\Binn

<dependentAssembly>
<assemblyIdentity 
name="Microsoft.DataTransformationServices.ScaleHelper" 
publicKeyToken="89845dcd8080cc91" culture="neutral"/>
<bindingRedirect oldVersion="15.0.0.0" newVersion="15.100.0.0"/>
</dependentAssembly>
Run Code Online (Sandbox Code Playgroud)

问题就解决了。更改前请备份DataProfileViewer.exe.config。