Data Profile Viewer - Could not load file or assembly Microsoft.DataTransformationServices.ScaleHelper

Cynthia McMahon 46 Reputation points
2021-09-29T22:33:02.19+00:00

Hi!

I am new to SSIS. I downloaded and installed the development version of SQL Server for development. I have the latest update of Visual Studio 2019. I also have the newest version of SSIS projects. I'm trying to create a Data Profiling Task. Everything is configured correctly, and it runs to completion. However, when trying to preview the task, I get the following error message. A quick Google search only yielded two pages of results, none of which addressed the issue. Any suggestions in resolving this would be appreciated.

Cynthia

136425-capture.png

SQL Server Integration Services
SQL Server Integration Services
A Microsoft platform for building enterprise-level data integration and data transformations solutions.
2,452 questions
0 comments No comments
{count} votes

Accepted answer
  1. ZoeHui-MSFT 32,736 Reputation points
    2021-09-30T02:13:13.963+00:00

    Hi @Cynthia McMahon ,

    I could re-produce the issue locally.

    Try to add following code to DataProfileViewer.exe.config.

    Location: 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>  
    

    Don't forget to backup DataProfileViewer.exe.config file.

    And then restart VS2019, this helps to resolve my issue, hope it could be useful.

    Regards,

    Zoe


    If the answer is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
    Hot issues October

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Cynthia McMahon 46 Reputation points
    2021-09-30T12:48:26.77+00:00

    Hi Zoe,

    Thank you so much! This has fixed the problem.

    Regards,
    Cynthia

    0 comments No comments