SSIS 数据分析任务编辑器 return 错误代码
SSIS Data Profiling Task Editor return error codes
我正在尝试 运行 SSIS 工具“数据分析任务” Visual Studio 2017
可以看到流量运行ning成功
但是当我点击“打开配置文件查看器”时,出现了这个错误代码。
Data Profile Viewer has encounter an unexpected error and has to be
closed. The error messages are: Could not load file or assembly
'Microsoft.DataTransformationServices.ScaleHelper, Version=15.0.0.0,
Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its
dependencies. The located assembly's manifest definition does not
match the assembly reference. (Exception from HRESULT: 0x80131040)
这个问题有解决办法吗?
我在VS 2019遇到过这个问题。
我在
中的 DataProfileViewer.exe.config 中添加了以下行
C:\Program Files (x86)\Microsoft Visual
Studio19\Enterprise\Common7\IDE\CommonExtensions\Microsoft\SSIS0\Binn
<dependentAssembly>
<assemblyIdentity
name="Microsoft.DataTransformationServices.ScaleHelper"
publicKeyToken="89845dcd8080cc91" culture="neutral"/>
<bindingRedirect oldVersion="15.0.0.0" newVersion="15.100.0.0"/>
</dependentAssembly>
问题已解决。更改前请备份DataProfileViewer.exe.config。
对于 Microsoft visual studio 2017,
找到文件“DataProfileViewer.exe.config”。 我的位置是“C:\Program Files (x86) \微软视觉
Studio17\SQL\Common7\IDE\CommonExtensions\Microsoft\SSIS0\Binn"
确保在更改之前保留该文件的副本
在其中添加以下代码行
<dependentAssembly>
<assemblyIdentity name="Microsoft.DataTransformationServices.ScaleHelper"
publicKeyToken="89845dcd8080cc91" culture="neutral"/>
<bindingRedirect oldVersion="15.0.0.0" newVersion="15.100.0.0"/>
</dependentAssembly>
enter image description here
我正在尝试 运行 SSIS 工具“数据分析任务” Visual Studio 2017
可以看到流量运行ning成功
但是当我点击“打开配置文件查看器”时,出现了这个错误代码。
Data Profile Viewer has encounter an unexpected error and has to be closed. The error messages are: Could not load file or assembly 'Microsoft.DataTransformationServices.ScaleHelper, Version=15.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
这个问题有解决办法吗?
我在VS 2019遇到过这个问题。 我在
中的 DataProfileViewer.exe.config 中添加了以下行C:\Program Files (x86)\Microsoft Visual Studio19\Enterprise\Common7\IDE\CommonExtensions\Microsoft\SSIS0\Binn
<dependentAssembly>
<assemblyIdentity
name="Microsoft.DataTransformationServices.ScaleHelper"
publicKeyToken="89845dcd8080cc91" culture="neutral"/>
<bindingRedirect oldVersion="15.0.0.0" newVersion="15.100.0.0"/>
</dependentAssembly>
问题已解决。更改前请备份DataProfileViewer.exe.config。
对于 Microsoft visual studio 2017,
找到文件“DataProfileViewer.exe.config”。 我的位置是“C:\Program Files (x86) \微软视觉 Studio17\SQL\Common7\IDE\CommonExtensions\Microsoft\SSIS0\Binn"
确保在更改之前保留该文件的副本
在其中添加以下代码行
<dependentAssembly>
<assemblyIdentity name="Microsoft.DataTransformationServices.ScaleHelper"
publicKeyToken="89845dcd8080cc91" culture="neutral"/>
<bindingRedirect oldVersion="15.0.0.0" newVersion="15.100.0.0"/>
</dependentAssembly>
enter image description here